diff options
author | felderado <github@feld.me> | 2014-10-17 08:11:06 -0500 |
---|---|---|
committer | felderado <github@feld.me> | 2014-10-17 08:11:06 -0500 |
commit | 40ae58a07e5840ab05747bb9e544a05d5bcaeb8d (patch) | |
tree | a48b1b6cac8ae580959a53463744d35224ac6fcf | |
parent | 47f1f43953b7670c9fdacfbcf8b80e6ccb5db95a (diff) | |
download | pelican-themes-40ae58a07e5840ab05747bb9e544a05d5bcaeb8d.tar.gz |
Update tags.html
sort the tags; be nice to your visitors...
-rw-r--r-- | tuxlite_tbs/templates/tags.html | 2 |
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> |