Note
Ensure you have Go and Hugo installed, and that you have created a new Hugo project before proceeding.
- From your project directory, initialize Hugo Modules:
hugo mod init github.com/qom-network/website- Create
config/_default/module.tomland add the following:
[[imports]]
path = "github.com/nunocoracao/blowfish/v2"
-
Start your server using
hugo serverand the theme will be downloaded automatically. -
In the root folder of your website, delete the
hugo.tomlfile that was generated by Hugo. Copy the *.toml config files from the theme into yourconfig/_default/folder.
Note
Do not overwrite the module.toml file you created above!
You will find these theme config files in the Hugo cache directory, or download a copy from GitHub.
- Follow the Getting Started instructions to configure your website
As new releases are posted, you can update the theme using Hugo. Simply run hugo mod get -u from your project directory and the theme will automatically update to the latest release.
Detailed update instructions are available in the docs.