all repos — website @ 19701d1646fcf8f95c51bab60ee4aadc23ece2b5

My website

Make tag lists more semantic
Alan Pearce alan@alanpearce.eu
Fri, 23 Jun 2023 14:01:52 +0200
commit

19701d1646fcf8f95c51bab60ee4aadc23ece2b5

parent

805b34faf0bbdaf135e16072b8dd9153a24368ad

2 files changed, 10 insertions(+), 12 deletions(-)

jump to
M themes/bear/templates/page.htmlthemes/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.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 %}