bbb/archive.md
2020-12-08 10:42:36 +00:00

385 B

layout, title
layout title
page Archive

Browse all posts by month and year.

{% assign postsByYearMonth = site.posts | group_by_exp: "post", "post.date | date: '%B %Y'" %} {% for yearMonth in postsByYearMonth %}

{{ yearMonth.name }}

    {% for post in yearMonth.items %}
  • {{ post.title }}
  • {% endfor %}
{% endfor %}