36 lines
587 B
Markdown
36 lines
587 B
Markdown
---
|
|
title: "My First Blog Post"
|
|
date: 2026-02-12T13:30:00-05:00
|
|
draft: false
|
|
tags: ["hello", "blog"]
|
|
---
|
|
|
|
# Welcome to My Blog
|
|
|
|
This is my first blog post on my new Hugo site.
|
|
|
|
I plan to write about:
|
|
- Web development
|
|
- Linux and containers
|
|
- Personal projects
|
|
- Other tech topics
|
|
|
|
Stay tuned for more content!
|
|
|
|
## Markdown Example
|
|
|
|
This post is written in Markdown, which Hugo renders beautifully.
|
|
|
|
You can use **bold**, *italic*, and `inline code`.
|
|
|
|
```javascript
|
|
console.log("Hello, world!");
|
|
```
|
|
|
|
> Blockquotes work too.
|
|
|
|
- List item 1
|
|
- List item 2
|
|
|
|
1. Numbered list
|
|
2. Another item |