2 layout: "layouts/layout.njk"
8 {% for year, group in collections.posts | reverse | groupby("date.getFullYear()") %}
10 <h2><time datetime="{{ year }}"><a class="c-sun dec-none" href="/{{ year }}">{{ year }}</a></time></h2>
11 {% for post in group %}
13 <a class="c-sun" href="{{ post.url }}">{{ post.data.title }}</a>
14 <div class="spacer wide-1"></div>
15 {% if post.data.published %}
16 <i class="dim rigid"><time datetime="{{ post.data.published | toRfc3339 }}">{{ post.data.published | date('MMM dd') }}</time></i>