Skip to content

Commit

Permalink
List previous releases in a more compact four column layout
Browse files Browse the repository at this point in the history
  • Loading branch information
eht16 committed Dec 15, 2013
1 parent ae77c69 commit 154d07d
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions static_docs/templates/pages/documentation/releasenotes.html
Expand Up @@ -11,12 +11,17 @@ <h2>Geany {{ selected_release.version }} ({{ selected_release.release_date }})</
</pre>

<h3>Older Releases</h3>
<ul>
<div class="row">
{% for release in releases %}
{% if release.version != selected_release.version %}
<li><a href="{% url 'releasenotes_for_release' release.version %}">Geany {{ release.version }}</a></li>
<div class="span2">
<a href="{% url 'releasenotes_for_release' release.version %}">Geany {{ release.version }}</a>
</div>

{% if forloop.counter|divisibleby:4 %}
</div>
<div class="row">
{% endif %}
{% endfor %}
</ul>
</div>

{% endblock %}

0 comments on commit 154d07d

Please sign in to comment.