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
- Create a folder:
src/routes/writing/my-new-post/ - Add
+page.mdinside, starting with frontmatter:
---
title: My New Post
date: 2026-06-01
summary: One line teaser.
--- - Write whatever markdown you like below the frontmatter.
- That’s it —
/writingwill 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