15 lines
357 B
Text
15 lines
357 B
Text
---
|
|
layout: "base.njk"
|
|
eleventyComputed:
|
|
title: "{{ page.fileSlug | capitalize }}"
|
|
---
|
|
{%- from "components/collectionList.njk" import collectionList with context -%}
|
|
<main>
|
|
<section data-pagefind-body>
|
|
{{ content | safe }}
|
|
</section>
|
|
{% set tag = page.fileSlug %}
|
|
{% if collections[tag] %}
|
|
{{ collectionList(tag) }}
|
|
{% endif %}
|
|
</main>
|