diff options
author | Alan Pearce | 2024-05-29 16:03:14 +0200 |
---|---|---|
committer | Alan Pearce | 2024-05-29 16:03:14 +0200 |
commit | be8552ef29fc7b3aa2a2d9de541afe3ce9c24ec0 (patch) | |
tree | d84759a2c20320cf3dbb0453208cf16303231c33 /templates/taxonomy_list.html | |
parent | 99423f57f79499f13d021970c1efb4529072006b (diff) | |
download | zola-bearblog-be8552ef29fc7b3aa2a2d9de541afe3ce9c24ec0.tar.lz zola-bearblog-be8552ef29fc7b3aa2a2d9de541afe3ce9c24ec0.tar.zst zola-bearblog-be8552ef29fc7b3aa2a2d9de541afe3ce9c24ec0.zip |
improve accessibility and HTML validity
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 %} |