My First Blog Post

hello first-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:

FieldWhat it does
titleThe page title
dateShows a date badge at the top
tagsAdds colorful tag badges
descriptionUsed 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!