Blog Entry Template

To create a new entry, copy the file src/blog/_TEMPLATE.md to a new file like src/blog/day-2-variables.md and edit it.

Here is the template content for reference:

---
title: "Day X: Your Title Here"
pubDate: 2025-12-02
description: "One line summary of what you learned."
tags: ["beginner", "topic1", "topic2"]
stage: "Stage or Level"
category: "Basics"
---

## Code

```python
# Your Python code here
print("Hello from your new entry!")
```

## Explanation

Write a detailed explanation of what this code does,
what concepts you learned, and any mistakes you made and fixed.

## Future Journey / Insights

Note what you want to learn next, questions you still have,
and how this topic connects to other Python concepts.