Building My Blog: From Scratch to Online
Hugo Blog + GitHub Pages Complete Deployment Guide 📌 Environment Preparation Device: MacBook (macOS) Tools: Git Hugo GitHub Account Install Hugo brew install hugo Verify installation: hugo version 🎯 Create Hugo Blog mkdir blog && cd blog hugo new site . Initialize Git: git init 🎨 Choose & Add Theme Recommended PaperMod theme: git submodule add https://github.com/adityatelange/hugo-PaperMod.git themes/PaperMod Edit config.toml, add: theme = "PaperMod" baseURL = "https://yuuniji.github.io" 📝 Write Blog Posts Create your first post: ...