Hello, world

This is a sample post. Posts live as markdown files at src/routes/writing/<slug>/+page.md. Frontmatter at the top of the file becomes the post’s metadata.

Adding a new post

  1. Create a folder: src/routes/writing/my-new-post/
  2. Add +page.md inside, starting with frontmatter:
---
title: My New Post
date: 2026-06-01
summary: One line teaser.
---
  1. Write whatever markdown you like below the frontmatter.
  2. That’s it — /writing will list it automatically, sorted by date.

Formatting

You can use bold, italics, links, and inline code.

Blockquotes work too:

“Programs must be written for people to read, and only incidentally for machines to execute.” — Harold Abelson

Code blocks:

function greet(name) {
  return `Hello, ${name}!`;
}

And lists:

  • One
  • Two
  • Three
© 2026 spencer asava