Make tag lists more semantic
1 file changed, 3 insertions(+), 3 deletions(-)
changed files
M themes/bear/templates/page.html → themes/bear/templates/page.html
@@ -16,14 +16,14 @@ {%- endif %} <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 %}