---
layout: page
# The Archives of posts.
---
{% assign df_strftime_m = site.data.locales[site.lang].df.archives.strftime | default: '/ %m' %}
{% assign df_dayjs_m = site.data.locales[site.lang].df.archives.dayjs | default: '/ MM' %}
{% for post in site.posts %}
{% capture cur_year %}{{ post.date | date: "%Y" }}{% endcapture %}
{% if cur_year != last_year %}
{% unless forloop.first %}{% endunless %}
{{ cur_year }}
{% assign last_year = cur_year %}
{% endif %}
-
{% assign ts = post.date | date: '%s' %}
{{ post.date | date: "%d" }}
{{ post.date | date: df_strftime_m }}
{{ post.title }}
{% if forloop.last %}
{% endif %}
{% endfor %}