---
layout: page
title: Archives
permalink: /archives/
order: 3
share: false
hide: true
---
{% for post in site.posts %}
{% unless post.next %}
{{ post.date | date: '%Y' }}
{% else %}
{% assign year = post.date | date: '%Y' %}
{% assign next_year = post.next.date | date: '%Y' %}
{% if year != next_year %}
{{ post.date | date: '%Y' }}
{% endif %}
{% endunless %}
{% assign month = post.date | date: '%m' %}
{% assign next_month = post.next.date | date: '%m' %}
{% if year != next_year or month != next_month %}
- {{ post.date | date: '%Y/%m' }}
{% endif %}
{% endfor %}
{% if site.posts %}
{% endif %}
{{ site.str_show_all_posts }}