2 layout: "layouts/layout.njk"
7 {% for post in collections.posts | reverse %}
9 <h2><a class="c-sun" href="{{ post.url }}">{{ post.data.title }}</a></h2>
10 {% if post.data.published %}
11 <i class="dim"><time datetime="{{ post.data.published | toRfc3339 }}">
12 {{ post.data.published | date("yyyy-MM-dd") }}
13 {% if post.data.published | hasTime %}at {{ post.data.published | date("HH:mm") }}{% endif %}
16 {% if post.data.summary %}
17 <p>{{ post.data.summary | markdown | safe }}</p>