mirror of
https://git.tacowolf.net/TacoWolf/mestizo.monster.git
synced 2026-06-12 08:50:04 -04:00
10 lines
218 B
Text
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>
|