---
title: "Your Blog Post Title Here"
date: "2025-10-16"
author: "Your Name"
summary: "Write a brief 1-2 sentence summary of your blog post here. This will appear on the blog listing page."
slug: "your-blog-post-title-here"
tags: ["general", "tutorial"]
published: true
---

# Your Blog Post Title Here

Write your introduction here. This is the main content of your blog post.

## Section Heading

Add your content organized into sections. You can use markdown formatting like:

### Subsection

- Bullet points
- More bullet points

### Code Examples

```python
def example_function():
    print("You can include code snippets like this")
```

### Lists

1. Numbered items
2. Work like this
3. And continue on

### Links and Emphasis

You can add [links to external sites](https://example.com) and use **bold** or *italic* text.

### Blockquotes

> Use blockquotes for important notes or quotes from other sources.

## Conclusion

Wrap up your blog post here.

---

## Instructions for Creating a New Blog Post

1. Copy this template file
2. Rename it to match your blog post (e.g., `my-new-post.md`)
3. Update the frontmatter at the top:
   - **title**: The title that will display on your blog
   - **date**: Publication date in YYYY-MM-DD format
   - **author**: Your name
   - **summary**: A brief description for the listing page
   - **slug**: URL-friendly version (use lowercase and hyphens, e.g., "my-new-post")
   - **tags**: List of tags for categorization (e.g., `["ai-ml", "tutorial"]`)
   - **published**: Set to `true` to make it visible, `false` to hide it
4. Write your content using markdown
5. Save the file in the `site_core/blog/posts/` directory
6. The blog post will automatically appear on your site!

### Frontmatter Field Details

- **title**: Required. The main heading of your blog post.
- **date**: Required. Format as YYYY-MM-DD (e.g., "2025-10-16")
- **author**: Optional. Defaults to "Anonymous" if not provided.
- **summary**: Recommended. Shows on the blog list page to entice readers.
- **slug**: Required. Must be unique and URL-safe (lowercase, hyphens only).
- **tags**: Optional. List of tags to categorize posts (e.g., `["ai-ml", "conservation"]`).
- **published**: Required. Only posts with `published: true` will be visible.

### Markdown Tips

- Use `#` for headers (# = h1, ## = h2, ### = h3, etc.)
- Wrap code in triple backticks with language name for syntax highlighting
- Use `-` or `*` for bullet lists, `1.` for numbered lists
- Links: `[text](url)`
- Images: `![alt text](image-url)`
- Bold: `**text**`, Italic: `*text*`
- Blockquotes: Start line with `>`

