feat: sort tags for tags page

This commit is contained in:
Price Hiller 2023-08-29 15:11:33 -05:00
parent 53405e2298
commit 7b1dfb2b56
Signed by: Price
SSH Key Fingerprint: SHA256:Y4S9ZzYphRn1W1kbJerJFO6GGsfu9O70VaBSxJO7dF8

View File

@ -12,7 +12,7 @@
<body>
<div class="tags">
<ul>
{% for tag in tags -%}
{% for tag in tags | sort -%}
<li><a href="/tags/{{ tag }}.html">{{ tag }}</a></li>
{% endfor -%}
</ul>