cheri.pink/src/_includes/listposts.njk
2024-11-28 21:44:19 +02:00

10 lines
308 B
Text

<ul>
{% for post in search.pages("type=post", "date=desc") %}
<li>
<strong><a href="{{ post.url }}"> {{ post.title }}</a></strong>
-
<time datetime="{{ post.date | date}}">{{ post.date | date}}</time>
<br><small>{{ post.description }}</small>
</li>
{% endfor %}
</ul>