22 lines
431 B
Text
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>
|