---
title: "Posts list"
permalink: "index.html"
layout: page
show: false
---
{% assign postsByYear = site.posts | group_by_exp: "post", "post.date | date: '%Y'" %}
{% for year in postsByYear %}
{{ year.name | strip_newlines | strip_html | strip | normalize_whitespace | smartify | slugify }}
{% endfor %}