Hello, and welcome
An example post for the mylineal blog, showing the frontmatter and markdown you'll use for real posts.
exampleguide
This is an example post. Once you’re ready to write for real, delete or overwrite this file.
Writing a new post
Drop a markdown (.md) file into src/content/blog/en/ and it becomes a new post. Start each file with frontmatter like this:
---
title: Post title
description: A one or two line summary shown in the list and search results
pubDate: 2026-07-25
tags: [tag1, tag2]
draft: false
---
- Set
draft: trueto keep a post out of the deployed site while still previewing it locally (npm run dev). tagsandupdatedDateare optional.
A quick markdown preview
Blockquotes look like this:
Write first, edit later.
Numbered lists work,
- First item
- Second item
- Third item
and so do code blocks.
function hello() {
console.log('hello, mylineal');
}
When you’re ready, delete this example and start your first real post.