From b3c3e4726398a2d77f77b7a9daa9d477f5aea16a Mon Sep 17 00:00:00 2001 From: Kyle Mahan Date: Tue, 1 Mar 2016 20:01:13 +0000 Subject: [PATCH] sort the tags at the top of the feed page. thanks for the suggestion @gregorlove fixes #44 --- woodwind/templates/feed.jinja2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/woodwind/templates/feed.jinja2 b/woodwind/templates/feed.jinja2 index f6bbcec..a06ee57 100644 --- a/woodwind/templates/feed.jinja2 +++ b/woodwind/templates/feed.jinja2 @@ -23,7 +23,7 @@ {% if all_tags %} - {% for tag in all_tags %} + {% for tag in all_tags|sort %} {{ tag }}{% if not loop.last %}, {% endif %} {% endfor %} {% endif %}