Welcome to Our Blog

This is an example blog post written in Markdown format. You can add new blog posts by creating .md files in the blogposts folder.

Features

  • Markdown Support: Write your posts in Markdown
  • Frontmatter Metadata: Add metadata at the top of each file
  • Easy to Manage: All posts are version controlled in the repository

How to Add a New Post

  1. Create a new .md file in the blogposts folder
  2. Add frontmatter at the top with metadata:
  3. title: The post title
  4. author: Author name
  5. date: Publication date (YYYY-MM-DD format)
  6. status: "published" or "draft"
  7. post_type: "blog" or "video" (optional, defaults to "blog")
  8. video_url: URL for video posts (optional)
  9. video_thumbnail: Thumbnail URL (optional)

  10. Write your content in Markdown below the frontmatter

Markdown Examples

You can use all standard Markdown features:

  • Bold text
  • Italic text
  • Lists (ordered and unordered)
  • Links: Example
  • Code blocks with syntax highlighting
  • Images: Alt text

Code Example

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

That's it! Your post will automatically appear on the blog.