Hugo Is Boss

No, I’m not talking about the fashion design company.

https://gohugo.io/about/what-is-hugo/ :

Hugo is a fast and modern static site generator written in Go, and designed to make website creation fun again.

It certainly is fun! I used it to build this site. With a handful of commands and minor config, I was already writing content!

I followed https://gohugo.io/getting-started/quick-start/ and did the following to get started:

hugo new site agens
cd agens
git init
git submodule add https://github.com/spf13/hyde.git themes/hyde
echo 'theme = "hyde"' >> config.toml
hugo new posts/hugo-is-boss.md
hugo server -D

Thanks to the serendipity of a mention from a friend and fellow coder, I was able to put a site together in a day.

If you’d like to build a website with minimal effort, go give it a try.