diff options
Diffstat (limited to 'themes/bear/templates/page.html')
-rw-r--r-- | themes/bear/templates/page.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/themes/bear/templates/page.html b/themes/bear/templates/page.html index d91a47f..393139b 100644 --- a/themes/bear/templates/page.html +++ b/themes/bear/templates/page.html @@ -16,14 +16,14 @@ <main id="content"> {{ page.content | safe }} </main> - <p> + <ul class="tags"> {%- if page.taxonomies %} {%- for name, taxon in page.taxonomies %} {{ name | capitalize }}: {%- for item in taxon %} - <a href="{{ get_taxonomy_url(kind=name, name=item) }}">#{{ item }}</a> + <li><a href="{{ get_taxonomy_url(kind=name, name=item) }}">#{{ item }}</a></li> {%- endfor %} {%- endfor %} {%- endif %} - </p> + </ul> {% endblock %} |