How to install Huguette as your Hugo theme - with optional CSS
If you’re complete new to building sites with Hugo, follow their Quick Start top get up and running fast.
Installing Huguette works in the same way as installing the default theme from their docs:
cd quickstart
git init
git submodule add https://github.com/cathelijne/hugo-huguette-example.git themes/huguette
Enable the theme in your Hugo configuration:
echo 'theme = "huguette"
disableKinds = ["RSS", "taxonomy", "taxonomyTerm"]' >> config.toml
Your theme is now installed and functional. Remember that it’s just HTML and nothing else, so it doesn’t look particularly good.
To make Huguette as pretty as she is, enable the css in your config.toml:
echo '[params]
css = true' >> config.toml
And that’s it!