diff options
Diffstat (limited to 'tuxlite_zf/templates')
-rw-r--r-- | tuxlite_zf/templates/tags.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tuxlite_zf/templates/tags.html b/tuxlite_zf/templates/tags.html index 9cba867..cfd9480 100644 --- a/tuxlite_zf/templates/tags.html +++ b/tuxlite_zf/templates/tags.html @@ -5,7 +5,7 @@ {% for tag, articles in tags|sort %}
<li><a href="{{ SITEURL }}/{{ tag.url }}">{{ tag }}</a></li>
<ul class="square">
- {% for article in articles|sort %}
+ {% for article in articles %}
<li><a href="{{ SITEURL }}/{{ article.url }}"><small>{{ article.title }}</small></li>
{% endfor %}
</ul>
|