2023-04-18 14:11:57 +00:00
|
|
|
<ul>
|
2024-08-16 13:12:30 +00:00
|
|
|
{% 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>
|
2024-08-16 13:12:30 +00:00
|
|
|
<br><small>{{ post.data.description }}</small>
|
2023-04-18 14:11:57 +00:00
|
|
|
</li>
|
|
|
|
{% endfor %}
|
|
|
|
</ul>
|