--- title: Welcome to My Homelab Blog date: 2025-04-25 draft: false tags: - 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 - Girls --- ## 🧱 Markdown Elements ### Headers ```markdown # H1 ## H2 ### H3 ``` ### Lists #### Unordered - Docker - Proxmox - Kubernetes #### Ordered 1. Build homelab 2. Break homelab πŸ˜… 3. Fix it and learn --- ### βœ… Checkboxes - [x] Installed Hugo - [x] Added PaperMod theme - [x] Created this test post - [ ] Sync with Obsidian vault --- ### πŸ”— Links Check out [PaperMod on GitHub](https://github.com/adityatelange/hugo-PaperMod) --- ### πŸ’¬ Blockquote > β€œSimplicity is the ultimate sophistication.” β€” Leonardo da Vinci --- ### πŸ’‘ Inline Code Use `docker compose up -d` to start your stack. --- ### πŸ§‘β€πŸ’» Code Blocks ```bash # A bash snippet sudo apt update sudo apt install hugo ``` ```yaml # A YAML snippet version: '3' services: blog: image: nginx:alpine ports: - "80:80" ``` ```go // A Go snippet (because Hugo is written in Go) func main() { fmt.Println("Hello, Hugo!") } ``` --- ### πŸ“Έ Image ![Example Image](https://via.placeholder.com/800x400.png?text=My+Blog) --- ### πŸ“ Directory Tree ```plaintext myblog/ β”œβ”€β”€ config.toml β”œβ”€β”€ content/ β”‚ └── posts/ β”‚ └── hello-world.md └── themes/ └── PaperMod/ ``` --- Thanks for stopping by! πŸŽ‰