cheri.pink/src/_includes/listposts.njk

10 lines
283 B
Text

<ul>
{% for post in listposts | reverse %}
<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>
</li>
{% endfor %}
</ul>