Update post and footer layout

This commit is contained in:
2025-07-18 23:43:15 -04:00
parent 5684b8250c
commit 61a741119b
5 changed files with 19 additions and 1 deletions

19
blog.html Normal file
View File

@@ -0,0 +1,19 @@
---
title: "Journal"
layout: default
---
<h1>Journal</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 %}