joshua.seigler.net/site/pages/tag.njk
2025-07-04 10:11:23 -04:00

24 lines
507 B
Text

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