Files
brendan-ch.github.io/notes.html

24 lines
581 B
HTML

---
title: "Notes"
layout: default
---
<h1>Notes</h1>
<p>I've moved publishing to my [Substack](https://bchendev.substack.com?utm_source=bchen.dev). For reference, old notes remain accessible here.</p>
<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 %}