layout: default


<div class=“container start”>

<h1>{{ page.title }}</h1>

{{ content }}

{%- for post in site.posts -%}
  {%- capture current_year -%}{{ post.date | date: "%Y" }}{%- endcapture -%}
  {%- unless current_year == previous_year -%}
    <h2>{{ current_year }}</h2>
    {%- assign previous_year = current_year -%}
  {%- endunless -%}
  <article>
    <h3><a href="{{ post.url }}">{{ post.title | escape }}</a></h3>
  </article>
{%- endfor -%}

</div>