diff options
author | Alan Pearce | 2023-04-18 14:53:30 +0200 |
---|---|---|
committer | Alan Pearce | 2023-04-18 14:53:30 +0200 |
commit | c78a3f2301caa3dc4c03d3b2a75f4f003e5863d0 (patch) | |
tree | 988cee910507c521d83080cc36a7c2e1665451ef /templates/taxonomy_list.html | |
parent | 4df500c33f3d3ba7b9387a2bc0447850a04d15c8 (diff) | |
download | zola-bearblog-c78a3f2301caa3dc4c03d3b2a75f4f003e5863d0.tar.lz zola-bearblog-c78a3f2301caa3dc4c03d3b2a75f4f003e5863d0.tar.zst zola-bearblog-c78a3f2301caa3dc4c03d3b2a75f4f003e5863d0.zip |
Reformat templates
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 %} |