--- layout: default title: "Mike's sudden inspirations" permalink: blog.html styles: assets/index.css --- {% include head.html %}

{{ page.title }}

{% assign y_posts = site.posts | group_by_exp: "post", "post.date | slice: 0, 4" %} {% for y in y_posts %}

{{ y.name }}

{% assign m_posts = y.items | group_by_exp: "item", "item.date | slice: 5, 2" %} {% for m in m_posts %} {% assign month = m.items | map: "date" | first | date: "%B" %}

{{ month }}

{% assign d_posts = m.items | group_by_exp: "item", "item.date | slice: 8, 2" %} {% for d in d_posts %} {% assign day = d.items | map: "date" | first | date: "%A, %e" %}

{{ day }}

{% endfor %} {% endfor %} {% endfor %}
{% include foot.html %}