Hugo Quick Start
Steps to get started with Hugo.
Based on gohugo.io/getting-started/quick-start/
hugo new site tomrea.uk
cd tomrea.uk
git init
git checkout -b main
git submodule add https://github.com/thomasmarkrea/mole.git themes/mole
echo 'theme = "mole"' >> config.toml
hugo new posts/test-page.md
# -D includes drafts
hugo server -D