Welcome to Svelto
· The Svelto Team Guides
This post is a plain Markdown file at src/content/blog/welcome-to-svelto.md. Drop a
new .md file in that folder with the frontmatter block at the top, and it shows up
here — no database, no CMS, no build step to remember.
How it works
At build time, Svelto reads every file in the blog folder, parses the frontmatter and Markdown, and prerenders each post to static HTML. The pages are served straight from Cloudflare's edge without ever invoking the Worker, so they cost nothing per view and load instantly.
Writing a post
Every post needs a frontmatter block:
---
title: My post
description: One sentence for SEO and the index card.
date: 2026-07-14
author: Your Name
draft: false
---
Your **Markdown** goes here.
Set draft: true while you're working — drafts are visible in pnpm dev but never
ship to production.
What you get
- Automatic listing on
/blog, newest first - Per-post SEO tags and Article structured data
- Inclusion in
sitemap.xml - Fully responsive, mobile-first typography
That's it. Delete these sample posts and write your own.