--- layout: page title: Archive --- <section id="archive"> <h2>This year's posts</h2> {% for post in site.posts %} {% unless post.next %} <ul class="this"> {% else %} {% capture year %}{{ post.date | date: '%Y' }}{% endcapture %} {% capture nyear %}{{ post.next.date | date: '%Y' }}{% endcapture %} {% if year != nyear %} </ul> <h2>{{ post.date | date: '%Y' }}</h2> <ul class="past"> {% endif %} {% endunless %} <li><time>{{ post.date | date:"%d %b ยป " }}</time><a href="{{ post.url }}">{{ post.title }}</a></li> {% endfor %} </ul> </section>