diff options
Diffstat (limited to 'themes/bear/templates/section.html')
-rw-r--r-- | themes/bear/templates/section.html | 16 |
1 files changed, 7 insertions, 9 deletions
diff --git a/themes/bear/templates/section.html b/themes/bear/templates/section.html index c7f80de..3042cd2 100644 --- a/themes/bear/templates/section.html +++ b/themes/bear/templates/section.html @@ -22,15 +22,13 @@ <li> No posts yet </li> - {% endfor %} + {%- endfor %} + </ul> + <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> - <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> </main> {% endblock %} |