2 layout: "layouts/layout.njk"
4 data: collections.years
7 permalink: /{{ year }}/index.html
10 collections: ["years"]
13 <h2><time datetime="{{ year }}">{{ year }}</time></h2>
16 {% for post in collections.years[year] | reverse %}
18 <h2><a class="c-sun" href="{{ post.url }}">{{ post.data.title }}</a></h2>
19 {% if post.data.published %}
20 <i class="dim"><time datetime="{{ post.data.published | toRfc3339 }}">{{ post.data.published | date("yyyy-MM-dd") }}</time></i>
22 {% if post.data.summary %}
23 <p>{{ post.data.summary | markdown | safe }}</p>