alias: year
permalink: /{{ year }}/index.html
title: Archive
+eleventyImport:
+ collections: ["years"]
---
<h2>{{ year }}</h2>
<li>
<h2><a class="c-sun" href="{{ post.url }}">{{ post.data.title }}</a></h2>
<i class="dim">{{ post.date | date("YYYY-MM-DD") }}</i>
- <p>{{ post.data.summary | markdown | safe }}</p>
+ {% if post.data.summary %}
+ <p>{{ post.data.summary | markdown | safe }}</p>
+ {% endif %}
</li>
{% endfor %}
</ul>