blob: 29709f7eaefad12a1b1926d78545c6bf6c1685b3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
---
layout: base.njk
pagination:
data: collections.post
size: 20
reverse: true
alias: posts
---
{% for post in posts %}
<article>
<h2><a href="{{ post.url | url }}">{{ post.data.title }}</a></h2>
<time datetime="{{ post.date | rfc3339_datetime }}">{{ post.date | local_date }}</time>
</article>
{% endfor %}
|