joshua.seigler.net/site/pages/tag.njk
2025-06-24 09:38:39 -04:00

22 lines
431 B
Text

---
layout: "base.njk"
eleventyComputed:
title: "Posts tagged #{{ tag }}"
pagination:
data: collections
size: 1
alias: tag
filter:
- posts
- recipes
- timeline
permalink: /tags/{{ tag | slugify }}/
useTitle: true
---
{%- from "components/collectionList.njk" import collectionList with context -%}
<main>
<section data-pagefind-body>
{{ content | safe }}
</section>
{{ collectionList(tag) }}
</main>