Files
brendan-ch.github.io/blog.html
2025-07-18 23:46:49 -04:00

20 lines
424 B
HTML

---
title: "Journal"
layout: default
---
<h1>Blog</h1>
{% assign posts_by_month = site.posts | group_by_exp: "post", "post.date | date: '%B %Y'" %}
{% for month in posts_by_month %}
<h2>{{ month.name }}</h2>
<ul>
{% for post in month.items %}
<li>
<time>{{ post.date | date: "%Y.%m.%d" }}</time>
<a href="{{ post.url }}">{{ post.title }}</a>
</li>
{% endfor %}
</ul>
{% endfor %}