A short Hugo how-to
Install Hugo
snap install hugo --channel=extendedCreate a new website
hugo new site evilDevOpsAdd a new post/article
hugo new post/helloWorld.mdStart test server
hugo server -DAdd a new theme
git submodule add https://github.com/budparr/gohugo-theme-ananke.git themes/anankeAdd a repo as a submodule and set it to follow master.
Only needed if you haven’t configured .gitmodules
git submodule add -b master git@github.com:<your.repo>.git publicTo “activate” and download the submodules
git submodule init
git submodule update