Blog Tutorial (Github Pages + Hugo)
My website is a simple HTML+CSS base, hosted on GitHub Pages. I wanted to extend this page to contain a collection of writings, thoughts, learnings. I’ve decided to try out Hugo, due to its reputation of being the world’s fastest static site generator (SSG). Step 1: Install Hugo locally Use the official .deb from the Hugo GitHub Releases Download the latest .deb Install: sudo dpkg -i hugo*.deb Verify version: hugo version Step 2: Initialize your site cd username.github.io/ hugo new site my-blog cd my-blog git init git submodule add --depth=1 https://github.com/adityatelange/hugo-PaperMod.git themes/PaperMod Step 3: Add a new Post hugo new posts/first-entry.md Open this MD file and start adding your content ...