Make tag lists more semantic
Alan Pearce alan@alanpearce.eu
Fri, 23 Jun 2023 14:01:52 +0200
2 files changed, 10 insertions(+), 12 deletions(-)
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 %}
M themes/bear/templates/section.html → themes/bear/templates/section.html
@@ -22,15 +22,13 @@ {% else %} <li> No posts yet </li> - {% endfor %} + {%- endfor %} </ul> - <small> - <div> - {% set tags = get_taxonomy(kind="tags") %} - {% for post in tags.items %} - <a href="{{ post.path | urlencode | safe }}">#{{ post.name }}</a> - {% endfor %} - </div> - </small> + <ul class="tags"> + {%- set tags = get_taxonomy(kind="tags") %} + {%- for post in tags.items %} + <li><a href="{{ post.path | urlencode | safe }}">#{{ post.name }}</a></li> + {%- endfor %} + </ul> </main> {% endblock %}