---
title: Example Blog Post
date: 2025-10-16
author: Your Name
summary: This is a brief summary of the blog post that will appear on the listing page. Keep it concise and engaging to encourage readers to click through to the full article.
slug: example-blog-post
published: false
---

# 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 `true` to make it visible, `false` to hide it

## Markdown Features

You can use all standard markdown features:

### Lists

- Bullet point 1
- Bullet point 2
- Bullet point 3

1. Numbered item 1
2. Numbered item 2
3. Numbered item 3

### Code Blocks

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

### Emphasis

You can use *italic*, **bold**, or ***bold italic*** text.

### Links and Images

[Link to Django](https://www.djangoproject.com/)

### 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!

