10 lines
226 B
Text
10 lines
226 B
Text
|
<ul>
|
||
|
{% for post in listposts %}
|
||
|
<li>
|
||
|
<strong><a href="{{ post.url | url }}"> {{ post.data.title }}</a></strong>
|
||
|
-
|
||
|
<time datetime="{{ post.date | htmlDateString}}">{{ post.date | readableDate}}</time>
|
||
|
</li>
|
||
|
{% endfor %}
|
||
|
</ul>
|