joshua.seigler.net/site/_includes/collection.njk
2024-06-07 15:39:27 -04:00

18 lines
554 B
Text

---
layout: "base.njk"
eleventyComputed:
title: "{{ page.fileSlug | capitalize }}"
---
{{ content | safe }}
{% set tag = page.fileSlug %}
{% if collections[tag] %}
<section>
{% for item in collections[tag] | reverse %}
<article class="item-summary">
<a href="{{ item.url }}">{{ item.data.title }}</a>
{% if item.data.date %}<aside>{{item.data.date | formatDate("MMMM DD, YYYY")}}</aside>{% endif %}
<p class="item-summary-description">{{ item.data.description }}</p>
</article>
{% endfor %}
</section>
{% endif %}