How to add a note (read me, then delete me)
This post is a cheat sheet for future-you. Once you’ve read it, delete this file.
To publish a new note
- Go to the
src/content/blog/folder. - Duplicate any existing
.mdfile and rename it (the file name becomes the URL, so use lowercase words with hyphens, likecarbon-markets-are-weird.md). - Edit the bit at the top between the
---lines. Only three fields matter:title: the headlinedescription: one sentence, shows up in the listpubDate: the date, like'Aug 15 2026'
- Write the body below the second
---in plain text. Blank lines separate paragraphs.## Like thismakes a subheading. - Save. If you’re using GitHub’s website, that’s a “commit.” Your site rebuilds and the note is live in a minute or two.
That’s the whole workflow. No plugins, nothing to break.
Optional: add a header image
Put an image in src/assets/, then add a line to the top block:
heroImage: '../../assets/your-image.jpg'
That’s it.