馃憢 Welcome to Jason’Log
Hi, this is Jason. I’m documenting my learning notes in this blog since 2025.
Hi! I am a new blog post.
A hands-on guide to creating a blog with Hugo and GitHub Pages. Prerequisites A GitHub account Installed Microsoft Visual Studio Code Installed Git Installed Snap If you are not familiar with Git, you can refer to the simple guide. Installation Install Hugo sudo snap install hugo hugo version # test installation Install PaperMod Theme mkdir -p homepages && cd homepages hugo new site mywebsite --format=yaml && cd mywebsite git init git submodule add --depth=1 https://github.com/adityatelange/hugo-PaperMod.git themes/PaperMod echo "theme: PaperMod" >> hugo.yaml After the installation, you should have a directory structure like this: ...