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
- Create a new
.mdfile in theblogpostsfolder - Add frontmatter at the top with metadata:
title: The post titleauthor: Author namedate: Publication date (YYYY-MM-DD format)status: "published" or "draft"post_type: "blog" or "video" (optional, defaults to "blog")video_url: URL for video posts (optional)-
video_thumbnail: Thumbnail URL (optional) -
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:
Code Example
def hello_world():
print("Hello, World!")
That's it! Your post will automatically appear on the blog.