sort the tags at the top of the feed page.

thanks for the suggestion @gregorlove

fixes #44
This commit is contained in:
Kyle Mahan 2016-03-01 20:01:13 +00:00
parent 025d8f4191
commit b3c3e47263

View file

@ -23,7 +23,7 @@
{% if all_tags %}
<i class="fa fa-tags"></i>
{% for tag in all_tags %}
{% for tag in all_tags|sort %}
<a href="{{ url_for('.index', tag=tag) }}">{{ tag }}</a>{% if not loop.last %}, {% endif %}
{% endfor %}
{% endif %}