--- permalink: "index.html" title: "Home" layout: page --- {% assign amount = 0 %} {% assign postsByYear = site.posts | group_by_exp: "post", "post.date | date: '%Y'" %} {% for year in postsByYear %} {% capture amount %}{{ amount | plus: 1 }}{% endcapture %}

{{ year.name | strip_newlines | strip_html | strip | normalize_whitespace | smartify | slugify }}

{% for post in year.items %} {% endfor %}
{{ post.title | strip_newlines | strip_html | strip | normalize_whitespace | smartify | xml_escape }} {{ post.description | strip_newlines | strip_html | strip | normalize_whitespace | smartify | truncatewords: 32 | xml_escape }}
{% endfor %}