mirror of
https://github.com/seigler/dash-docs
synced 2025-07-27 17:56:16 +00:00
version-history now shows all posts in one page with anchors Each individual version page links to version-history instead of duplicating it Events pages no longer show version-history Ugly margins have been improved
26 lines
655 B
HTML
26 lines
655 B
HTML
---
|
|
layout: base-en
|
|
id: version-history
|
|
title: Version history
|
|
---
|
|
<div class="versiontext">
|
|
<h1>Version history</h1>
|
|
<ul>
|
|
{% for post in site.categories.releases %}
|
|
<li>
|
|
{{ post.date | date:"%Y-%m-%d" }} - <a href="#{{ post.version }}">{{ post.title }}</a>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
</div>
|
|
{% for post in site.categories.releases %}
|
|
<div class="versiontext">
|
|
<h1><a name="{{ post.version }}">{{ post.title }} <small>{{ post.date | date:"%e %B %Y" }}</small></a></h1>
|
|
{% if post.src %}
|
|
<p>
|
|
<a href="{{ post.src }}">Full announcement (including signatures)</a>
|
|
</p>
|
|
{% endif %}
|
|
{{ post.content }}
|
|
</div>
|
|
{% endfor %}
|