all repos — website @ 19701d1646fcf8f95c51bab60ee4aadc23ece2b5

My website

Make tag lists more semantic

Alan Pearce
commit

19701d1646fcf8f95c51bab60ee4aadc23ece2b5

parent

805b34faf0bbdaf135e16072b8dd9153a24368ad

1 file changed, 7 insertions(+), 9 deletions(-)

changed files
M themes/bear/templates/section.htmlthemes/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 %}