Welcome to My Blog

less than 1 minute read

This is a sample blog post to get you started. You can delete this and create your own posts!

How to Create New Posts

  1. Create a new file in the _posts folder
  2. Name it following the format: YYYY-MM-DD-title-of-your-post.md
  3. Add the front matter (the content between --- lines at the top)
  4. Write your content in Markdown

Front Matter Example

---
title: "Your Post Title"
date: 2024-12-16
categories:
  - Category1
tags:
  - tag1
  - tag2
---

Markdown Basics

You can use bold, italic, and code formatting.

Code Blocks

def hello_world():
    print("Hello, World!")

Math (if enabled)

You can include math equations: $E = mc^2$

Images

![Alt text](/assets/images/your-image.jpg)

Happy blogging! 🚀