dash-docs/en/version-history.html
Saivann 9bcbd64415 Improve how version-history and events are handled
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
2013-05-15 16:19:48 -04:00

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 %}