title: Time Machine layout: page


{% for post in site.posts %}

{% unless post.next %}
  <h3>{{ post.date | date: '%Y' }}</h3>
{% else %}
  {% capture year %}{{ post.date | date: '%Y' }}{% endcapture %}
  {% capture nyear %}{{ post.next.date | date: '%Y' }}{% endcapture %}
  {% if year != nyear %}
    <h3>{{ post.date | date: '%Y' }}</h3>
  {% endif %}
{% endunless %}

<p><a href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a><small> • {{ post.date | date: site.date_format }}</small></p>

{% endfor %}