Create a Site
• 2 min read
Prerequisites #
SeoTax requires Hugo 0.146.0 or later. Check your installed version first.
bash
hugo versionInstall as a Git Submodule #
bash
hugo new site myblog
cd myblog
git init
git submodule add https://github.com/minyeamer/hugo-seotax themes/seotaxSet theme: "seotax", then run hugo server --minify.
Install as a Hugo Module #
toml
[module]
[[module.imports]]
path = "github.com/minyeamer/hugo-seotax"Run hugo mod get -u, then start the local server.
Start from the Example Site #
bash
cp -R themes/seotax/exampleSite/* .
hugo server --minify