--- layout: default title: Archives robots: follow, noindex, noodp, noydir ---

Archives

{% assign show_year = true %} {% assign show_month = true %} {% for post in site.posts %} {% if show_year %}

{{ post.date | date: '%Y' }}

{% endif %} {% if show_year or show_month %}

{{ post.date | date: '%B' }}

    {% endif %}
  1. {{ post.title }}
  2. {% capture year %}{{ post.date | date: '%Y' }}{% endcapture %} {% capture pyear %}{{ post.previous.date | date: '%Y' }}{% endcapture %} {% capture month %}{{ post.date | date: '%B' }}{% endcapture %} {% capture pmonth %}{{ post.previous.date | date: '%B' }}{% endcapture %} {% if year != pyear %}{% assign show_year = true %}{% else %}{% assign show_year = false %}{% endif %} {% if month != pmonth %}{% assign show_month = true %}{% else %}{% assign show_month = false %}{% endif %} {% if show_year or show_month %}
{% endif %} {% endfor %}