finally make tagging clickable, add blank content folders i will fill out later

This commit is contained in:
Bun 2025-07-01 22:48:48 -04:00
parent 67d4b7e1ef
commit 0cb04d1205
11 changed files with 43 additions and 11 deletions

View file

@ -18,7 +18,9 @@
<br>
written: {{ page.date }}
<br>
tags: {{ page.taxonomies.tags }}
tags: {%- for tag in page.taxonomies.tags | sort | unique(case_sensitive=false) %}
<a class="post-tag" href="{{ get_taxonomy_url(kind='tags', name=tag) | safe }}">#{{ tag }}</a>
{% endfor -%}
</li>
{% endfor %}
</ul>