site/src/posts/index.md

16 lines
426 B
Markdown
Raw Normal View History

2024-06-19 20:21:44 -04:00
---
title: Blog
permalink: /blog/
override:tags: []
eleventyNavigation:
key: Blog
order: 2
---
{%- for post in collections.blog reversed -%}
{% if forloop.first == true %}<ul>{% endif %}
<li><a href="{{ post.url }}">{{ post.data.title }}</a>
&mdash; <i>updated <time datetime="{{ post.date | formatDate }}">{{ post.date | formatDate }}</time></i></li>
{% if forloop.last == true %}</ul>{% endif %}
{%- endfor -%}