Setting Up My Blog
Welcome to my first ‘official’ blog post! Here, I’ll walk you through how I set up my blog with Hugo, the Hermit V2 theme, and GitHub Pages. Along the way, I’ll share the hiccups I encountered and how I solved them so you can skip the headaches, allowing you to focus on learning and building your own blog!
Why Hugo and GitHub Pages? I chose Hugo because it’s a fast, flexible, and open-source static site generator that allows for full customization with minimal effort. Combined with GitHub Pages, I get free hosting and easy version control, which makes maintaining my site much simpler. This setup is perfect for anyone looking for a lightweight, scalable solution without the overhead of traditional blogging platforms like WordPress or Wix.
Stage 1: Preparation
I initially followed a guide my friend created, which you can find at “dzonta.com”, Zonta’s guide helped me get an overview of the process and motivated me to create the very blog you are reading.
Here’s everything I needed to get started:
- Hugo (the static site generator)
- a Theme (defines your blog’s design and layout, make sure to fork this to your GitHub repo!)
- Git (version control)
- a GitHub account (online platform for hosting and sharing code)
- Chocolatey (Windows package manager)
- Visual Studio Code (text editor)
- PowerShell (make sure it’s not Windows PowerShell)
Stage 2: Setting Up
After setting up a GitHub account, creating a fork of my chosen theme I followed the Hugo Quick start guide to complete the below steps from a new powershell window (or the terminal within VS Code):
hugo new site quickstart # Creates a new Hugo site in a folder named "quickstart."
- You can change “quickstart” to whichever folder directory you would like your blog to be stored in.
cd quickstart # Changes the working directory to the "quickstart" folder.
- If you changed the directory in step 1, change it here too.
git init # Initializes a new Git repository in the current directory.
- Starts the Git Module within your Powershell session
git submodule add https://github.com/xBrendan66/Blog-Theme.git themes/HermitV2 # Adds the HermitV2 theme repository as a Git submodule.
- Be sure to change the URL to the fork of your theme!
- Within File Explorer on your device, you should now be able to find the new folder directory that you have just created, it should have some pre made subfolders. Locate the file “hugo.toml”, this is going to be where all global changes and config settings are handled. More on this in Stage 3, though for now, either use the command below to set your theme within the ‘hugo.toml’ file, or open hugo.toml within VS Code and add
theme = 'HermitV2'
here.
echo "theme = 'HermitV2'" >> hugo.toml
# Appends the theme configuration to the Hugo settings file.
Whilst you are browsing the folder structure, locate the “content” folder and create a subfolder within named “posts”. Leave the posts folder empty for now, we will come back to it in Stages 3 & 4.
To test that your blog is working locally, enter the command
hugo server
this will give you a URL that you can use to view the current state of your blog in real time, via a local server. This command is useful for testing and checking changes as you go!
Stage 3: Customisation and Configuration
Now that my blog was up and running locally, it was time to start customising it. This involved diving into the hugo.toml
configuration file, tweaking some settings, and figuring out how to make things work with the Hermit V2 Theme. It wasn’t without challenges, but that’s part of the fun, right?
First things first, let’s give the site a name and subtitle!
title = "Text Goes Here"
# Sets the title of the site.
[params]
homeSubtitle = "Text Goes Here"
# Sets the subtitle of the site.
Within the Hermit V2 Theme, there are x3 fields at the top of each post:
- Author
- Read Time
- Publication Date
To set these, add the following code under your [params]
heading:
author = "Text Goes Here" #Change this to your name
readTime = true
dateform = "Jan 2, 2006" # Customise these date formats to your liking
dateformShort = "2006-01-02"
dateformNumTime = "2006-01-02 15:04"
If you’ve been checking your progess with hugo server
you may notice that your homepage is looking nicer, though you are lacking any navigation to your posts from the homepage - let’s fix that with some code!
[menu]
[[menu.main]]
name = "All Posts"
url = "posts/"
# Adds a navigation menu link to the "posts" folder of your blog.
Your site is now 100% functional (locally)! To start writing your first post, open the ‘posts’ folder and create a new file and save it with the ‘.md’ (markdown) extension as this is the format required by Hugo. If you are unfamiliar with using Markdown to format and write text, I’d reccomend checking out this guide to basic syntax for markdown. I’ll also be making a guide on useful features within Hermit V2 as I learn more about it; Keep an eye out for this!
Stage 4: It’s Alive!
With the blog customized and running locally, it was time to make it live on the web! Hosting it on GitHub Pages was a straightforward process, but like everything else, there were a few bumps along the way. Here’s how I got it all set up.
To host your blog on GitHub Pages, you’ll need a public repository named in the format username.github.io
. For me, this was xBrendan66.github.io
. Once the repository was created, it was time to push my local blog files to GitHub.
I started by signing into GitHub via Git in the terminal using this command:
git credential-manager github login
# Logs into GitHub using the Git Credential Manager.
Next, I set up the remote repository and attempted to push my local files:
git remote add origin https://github.com/your-username/your-repo.git
# Replace 'your-username' and 'your-repo' with your GitHub username and repository name.
git branch -M main
# Renames the current branch to "main."
git push -u origin main
# Pushes the local repository's changes to the remote "main" branch.
Unfortunately, this didn’t work at first. The fix involved creating a new branch and ensuring Git recognized me as the user:
git checkout -b main
# Creates and switches to a new branch named "main."
git add .
# Stages all changes in the working directory for the next commit.
git commit -m "Initial commit"
# Creates a commit with the message "Initial commit."
git config --global user.email "[email protected]"
# Sets your global Git email
git config --global user.name "Your Username"
# Sets your global Git username
git commit -m "Initial commit"
# Creates a commit with the message "Initial commit."
git push -u origin main
# Pushes the committed changes to the remote "main" branch and sets tracking.
After refreshing the repository on GitHub, all the files were there, and the site was ready to be configured for GitHub Pages.
To enable GitHub Pages, I navigated to Settings > Pages in the repository. Under Build and Deployment, I selected GitHub Actions as the source.
At this point, I needed to set up a workflow to automatically build and deploy my site whenever I pushed changes. This required creating some new files in the repository.
- In the root of my blog repository, I created a new folder called
.github
. - Inside
.github
, I created another folder calledworkflows
. - Within
workflows
, I added a new file namedhugo.yaml
.- Final result should be
/.github/workflows/hugo.yaml
- Final result should be
For the workflow configuration, I used a template from this gist or the Hugo documentation. After pasting the contents into a new ‘hugo.yaml’ file, I saved the changes and pushed them to GitHub:
git add .
# Stages all files for commit (used again for later changes).
git commit -m "Add Hugo workflow"
# Creates a commit with the message "Add Hugo workflow."
git push
# Pushes the changes in the repository to the remote server.
Stage 5: Finishing Touches
With the blog hosted successfully on GitHub Pages, the next step was to set up a custom domain and make some enhancements like adding a favicon and social links.
I decided to use my custom domain, bmatho.com
, for the blog. Here’s how I got it working:
Adding the Domain in GitHub Pages:
- Went to Settings > Pages in the repository.
- Under Custom Domain, added
bmatho.com
. - GitHub prompted me to add a TXT record to my DNS server to verify ownership of the domain.
Dealing with Verification Issues:
- Initially, the custom domain setup failed. To resolve this, I added four A records in my DNS settings pointing to GitHub’s servers as per GitHub’s documentation:
185.199.108.153 185.199.109.153 185.199.110.153 185.199.111.153
- After this,
bmatho.com
started showing my blog, though it was formatted weirdly…
- Initially, the custom domain setup failed. To resolve this, I added four A records in my DNS settings pointing to GitHub’s servers as per GitHub’s documentation:
Fixing the Formatting Issue:
- My base URL in the
hugo.toml
file was set tohttps://bmatho.com
, but since I hadn’t set up HTTPS yet, this was causing the formatting issue. - I changed it to
bmatho.com
, and the site loaded correctly. - I then proceeded to enable HTTPS for my domain, changed the URL back to
https://
withinhugo.toml
, pushed the change and verified that is is now working!
- My base URL in the
Adding a Favicon
To replace the default “globe” favicon, I used favicon.io to create a custom favicon.
- Downloaded the favicon files and added them directly to the
static/
folder of my Hugo project. - After pushing the changes, the new favicon appeared on the site.
Adding a GitHub Link
To make the blog more interactive, I added a link to my GitHub repository in the footer. This required updating the hugo.toml
file:
[[params.socialLinks]]
name = "github"
url = "link goes here"
# Adds a social link to your GitHub profile in the site's footer.
With these updates, the blog now feels more polished and professional. The custom domain, HTTPS, and favicon give it a personal touch, and the social links make it easier for visitors to connect with me!
Closing Notes
And that’s it, your blog is live! I hope this guide not only helped you learn something new but also inspired you to create a blog of your own. Whether you’re sharing personal learnings, homebrew projects, or something else entirely, the web is now your canvas. Stay tuned as I continue improving this site and sharing more tips along the way.
Until next time, happy blogging!
-Brendan