site/src/poems/index.md

17 lines
403 B
Markdown
Raw Normal View History

2023-10-19 01:33:51 -04:00
---
title: Poetry
layout: layouts/page.njk
permalink: /poetry/
2023-10-19 01:33:51 -04:00
override:tags: []
2023-10-19 22:31:19 -04:00
eleventyNavigation:
key: Poetry
order: 2
2023-10-19 01:33:51 -04:00
---
2023-10-27 01:24:47 -04:00
{%- for poem in collections.poems reversed -%}
{% if forloop.first == true %}<ul>{% endif %}
<li><a href="{{ poem.url }}">{{ poem.data.title }}</a>
&mdash; <i>updated {{ poem.date | postDate }}</i></li>
{% if forloop.last == true %}</ul>{% endif %}
2023-10-19 01:33:51 -04:00
{%- endfor -%}