Revive the "blog" as (Tech)notes

This commit is contained in:
2025-12-15 16:34:22 -08:00
parent bd6ee4e7b5
commit 27d35ab7e7
4 changed files with 14 additions and 12 deletions

23
notes.html Normal file
View File

@@ -0,0 +1,23 @@
---
title: "(Tech)notes"
layout: default
---
<h1>(Tech)notes</h1>
Documenting work-in-progress projects, learnings, and more.
<p></p>
{% 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 %}