mestizo.monster/_includes/post-list.njk

10 lines
218 B
Text

---
layout: base.njk
---
{{ content | safe }}
<ul>
{%- for post in ( collections.post | sortByDate ) -%}
<li><a href="{{ post.url }}">{{ post.data.date }} - {{ post.data.title }}</a></li>
{%- endfor -%}
</ul>