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 <i class="dim">{{ post.date | date("YYYY-MM-DD") }}</i>
11 {% if post.data.summary %}
12 <p>{{ post.data.summary | markdown | safe }}</p>