Blog/content/posts/my-first-post.md
Gitea Actions 78f1a6b8ca
All checks were successful
Deploy / Deploy (push) Successful in 8s
Auto-update blog content from Obsidian: 2025-05-03 21:06:42
2025-05-03 21:06:42 +00:00

1.7 KiB

title, date, draft, tags
title date draft tags
Welcome to My Homelab Blog 2025-04-25 false
homelab
infrastructure
docker

🏡 Welcome to My Homelab

This is a placeholder post to test the features of my new blog powered by Hugo and the PaperMod theme.

I like :

  • Chicken
  • Sausage
  • Oranges
  • Potatoes
  • Pasta
  • Beer
  • Squid
  • Doritos
  • Banana
  • Kiwi
  • Pizza
  • Automation
  • Cats
  • Tomatoes
  • Fish

🧱 Markdown Elements

Headers

# H1
## H2
### H3

Lists

Unordered

  • Docker
  • Proxmox
  • Kubernetes

Ordered

  1. Build homelab
  2. Break homelab 😅
  3. Fix it and learn

Checkboxes

  • Installed Hugo
  • Added PaperMod theme
  • Created this test post
  • Sync with Obsidian vault

Check out PaperMod on GitHub


💬 Blockquote

“Simplicity is the ultimate sophistication.” — Leonardo da Vinci


💡 Inline Code

Use docker compose up -d to start your stack.


🧑‍💻 Code Blocks

# A bash snippet
sudo apt update
sudo apt install hugo
# A YAML snippet
version: '3'
services:
  blog:
    image: nginx:alpine
    ports:
      - "80:80"
// A Go snippet (because Hugo is written in Go)
func main() {
  fmt.Println("Hello, Hugo!")
}

📸 Image

Example Image


📁 Directory Tree

myblog/
├── config.toml
├── content/
│   └── posts/
│       └── hello-world.md
└── themes/
    └── PaperMod/

Thanks for stopping by! 🎉