summaryrefslogblamecommitdiff
path: root/articles/index.html
blob: d990a831fe97fbdbf6ccf237b3aa549d235eb090 (plain) (tree)
1
2
3
4
5

              
               

   













                                                                
                                                             


            
---
layout: static
title: Archives
---

{% for post in site.posts reverse %}

  {% capture date %}{{ post.date }}{% endcapture %}
  {% capture this_year %}{{ date | date: "%Y" }}{% endcapture %}

  {% unless year == this_year %}
    {% assign year = this_year %}
    {% unless forloop.first %}
      </section>
    {% endunless %}
    <section class="archives"><h2>{{ date | date: "%Y" }}</h2>
  {% endunless %}

  <article>
    <a href="{{ root_url }}{{ post.url }}">{{post.title}}</a>
  </article>

{% endfor %}