Hugo
This is the cheat sheet for hugo. Hugo is a static site generator.
More information can be found here: https://gohugo.io/getting-started/quick-start/
Install Hugo:
brew install hugo Create a site:
hugo new site quickstart
cd quickstartCreate git repository:
git initAdd a theme:
git submodule add https://github.com/theNewDynamic/gohugo-theme-ananke.git themes/ananke
echo theme = \"ananke\" >> config.tomlAdd some content:
hugo new posts/my-first-post.mdStart the server
hugo server