My First Blog Post
Welcome to my blog! This is an example blog post to show you how the blog section works.
How Blog Posts Work
Any Markdown file you put in the pages/blog/ folder will become a blog post.
The frontmatter at the top of the file controls:
| Field | What it does |
|---|---|
title | The page title |
date | Shows a date badge at the top |
tags | Adds colorful tag badges |
description | Used for SEO meta tags |
Adding Code
Here’s some Rust code:
fn main() {
println!("Hello from mksite!");
}
And some Python:
def greet(name):
return f"Hello, {name}!"
print(greet("World"))
What’s Next?
Create your own posts! Just add new .md files to the pages/blog/ folder.
Each file becomes its own page at /blog/your-file-name/.
Happy blogging!