diff options
Diffstat (limited to 'templates/taxonomy_list.html')
-rw-r--r-- | templates/taxonomy_list.html | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/templates/taxonomy_list.html b/templates/taxonomy_list.html index 876087c..ef28c58 100644 --- a/templates/taxonomy_list.html +++ b/templates/taxonomy_list.html @@ -1,14 +1,14 @@ {% extends "base.html" %} {% block main %} -<content> - <small> - <div> - {% set tags = get_taxonomy(kind="tags") %} - {% for post in tags.items %} - <a href="{{ post.permalink }}">#{{ post.name }}</a> - {% endfor %} - </div> - </small> -</content> + <content> + <small> + <div> + {% set tags = get_taxonomy(kind="tags") %} + {% for post in tags.items %} + <a href="{{ post.permalink }}">#{{ post.name }}</a> + {% endfor %} + </div> + </small> + </content> {% endblock %} |