tag pages, meta keywords

This commit is contained in:
Joshua Seigler 2025-06-21 18:50:15 -04:00
parent 04e4b0e51e
commit c008cedf7c
17 changed files with 61 additions and 15 deletions

View file

@ -1,10 +1,10 @@
{% macro tagList(tags) %}
<span class="tags">
<span class="tags" style="--totalTags:{{ collections.categories | dictsort | length }}">
{%- for tag in tags -%}
<a
class="tag"
style="--tagIndex:{{ collections.categories[tag].id }}"
href="/posts/tag/{{ tag | slugify }}"
href="/tags/{{ tag | slugify }}"
>{{ tag }}</a>
{% endfor -%}
</span>