cheri.pink/src/_includes/listposts.njk

11 lines
283 B
Text
Raw Normal View History

2023-04-18 14:11:57 +00:00
<ul>
{% for post in listposts | reverse %}
2023-04-18 14:11:57 +00:00
<li>
<strong><a href="{{ post.url | url }}"> {{ post.data.title }}</a></strong>
-
<time datetime="{{ post.date | htmlDateString}}">{{ post.date | readableDate}}</time>
<br><small>{{ post.data.description }}</small>
2023-04-18 14:11:57 +00:00
</li>
{% endfor %}
</ul>