From e90ac9fe79cb10aaaf3704325638c56629bee297 Mon Sep 17 00:00:00 2001 From: Brendan Chen Date: Sat, 8 Aug 2026 19:22:20 -0400 Subject: [PATCH] Add a Jekyll configuration with the notes collection --- _config.yml | 4 ++++ _notes/test.md | 6 ++++++ notes.html | 23 ----------------------- 3 files changed, 10 insertions(+), 23 deletions(-) create mode 100644 _config.yml create mode 100644 _notes/test.md delete mode 100644 notes.html diff --git a/_config.yml b/_config.yml new file mode 100644 index 0000000..3f2e05a --- /dev/null +++ b/_config.yml @@ -0,0 +1,4 @@ +collections: + notes: + output: true + permalink: /:slug/ diff --git a/_notes/test.md b/_notes/test.md new file mode 100644 index 0000000..c3f2bd7 --- /dev/null +++ b/_notes/test.md @@ -0,0 +1,6 @@ +--- +title: "Hello World" +layout: default +--- + +Hello World diff --git a/notes.html b/notes.html deleted file mode 100644 index e185039..0000000 --- a/notes.html +++ /dev/null @@ -1,23 +0,0 @@ ---- -title: "Notes" -layout: default ---- - -

Notes

- -

I've moved publishing to my [Substack](https://bchendev.substack.com?utm_source=bchen.dev). For reference, old notes remain accessible here.

- -

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

{{ month.name }}

- -{% endfor %}