diff options
Diffstat (limited to 'templates/taxonomy_list.html')
-rw-r--r-- | templates/taxonomy_list.html | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/templates/taxonomy_list.html b/templates/taxonomy_list.html index f11519d..7ccb4a5 100644 --- a/templates/taxonomy_list.html +++ b/templates/taxonomy_list.html @@ -3,13 +3,11 @@ {% block main %} <main> <h1>{{ taxonomy.name | capitalize }}</h1> - <small> - <div> - {%- set tags = get_taxonomy(kind="tags", lang=lang) %} - {%- for post in tags.items %} - <a href="{{ post.permalink }}">#{{ post.name }}</a> - {%- endfor %} - </div> - </small> + <div class="tags"> + {%- set tags = get_taxonomy(kind="tags", lang=lang) %} + {%- for post in tags.items %} + <a href="{{ post.permalink }}">#{{ post.name }}</a> + {%- endfor %} + </div> </main> {% endblock %} |