Example Blog Post
Example Blog Post
This is an example blog post to demonstrate the format. You can use all standard markdown features.
What is this?
This is a template for creating blog posts. Each post should be a markdown file with frontmatter at the top.
Frontmatter Fields
The frontmatter (the section between the --- markers) contains metadata about your post:
- title: The title of your blog post
- date: Publication date in YYYY-MM-DD format
- author: Your name or the author's name
- summary: A brief description for the listing page (1-2 sentences)
- slug: URL-friendly version of the title (use hyphens instead of spaces)
- published: Set to
trueto make it visible,falseto hide it
Markdown Features
You can use all standard markdown features:
Lists
- Bullet point 1
- Bullet point 2
-
Bullet point 3
-
Numbered item 1
- Numbered item 2
- Numbered item 3
Code Blocks
def hello_world():
print("Hello, World!")
Emphasis
You can use italic, bold, or bold italic text.
Links and Images
Blockquotes
This is a blockquote. Use it for important notes or quotes.
Conclusion
Save your markdown files in the site_core/blog/posts/ directory following this format, and they'll automatically appear on your blog!