add "Tags" label in front of tag listings

This commit is contained in:
⧉ infominer 2023-08-19 02:50:06 -04:00
parent 09b5c3acb2
commit 6513db874a
1 changed files with 2 additions and 1 deletions

View File

@ -44,7 +44,8 @@
{% else %}
{% assign sorted_tags = post.tags | uniq | compact | sort %}
{% endif %}
{% for tag in sorted_tags %}
<small><strong>Tags:</strong></small>
{% for tag in sorted_tags %}
<div class="tags">{{ tag }}</div>
{% endfor %}
</article>