aboutsummaryrefslogtreecommitdiffstats
path: root/tuxlite_tbs
diff options
context:
space:
mode:
authorfelderado <github@feld.me>2014-10-17 08:11:06 -0500
committerfelderado <github@feld.me>2014-10-17 08:11:06 -0500
commit40ae58a07e5840ab05747bb9e544a05d5bcaeb8d (patch)
treea48b1b6cac8ae580959a53463744d35224ac6fcf /tuxlite_tbs
parent47f1f43953b7670c9fdacfbcf8b80e6ccb5db95a (diff)
downloadpelican-themes-40ae58a07e5840ab05747bb9e544a05d5bcaeb8d.zip
pelican-themes-40ae58a07e5840ab05747bb9e544a05d5bcaeb8d.tar.gz
pelican-themes-40ae58a07e5840ab05747bb9e544a05d5bcaeb8d.tar.bz2
Update tags.html
sort the tags; be nice to your visitors...
Diffstat (limited to 'tuxlite_tbs')
-rw-r--r--tuxlite_tbs/templates/tags.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/tuxlite_tbs/templates/tags.html b/tuxlite_tbs/templates/tags.html
index db1c520..94a5fc3 100644
--- a/tuxlite_tbs/templates/tags.html
+++ b/tuxlite_tbs/templates/tags.html
@@ -2,7 +2,7 @@
{% block title %}{{ SITENAME }} <small>[tgs]</small>{% endblock %}
{% block content %}
<ul>
-{% for tag, articles in tags %}
+{% for tag, articles in tags|sort %}
<li><a href="{{ SITEURL }}/{{ tag.url }}">{{ tag }}</a></li>
{% endfor %}
</ul>