punkfairie-site/src/diary.liquid
2023-06-08 20:03:36 -07:00

13 lines
314 B
Text

---
layout: layout.liquid
---
<ul class="List">
{% for post in collections.posts reversed %}
<li class="List-item">
<a href="{{ post.url }}" class="Link">{{ post.data.title }}</a>
&mdash;
{{ post.page.date | date: "%d %B %Y" }}
</li>
{% endfor %}
</ul>