10 lines
308 B
Text
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>
|