1. Create a site
https://gohugo.io/getting-started/quick-start/#create-a-site
hugo new site hugo-practice
cd hugo-practice
git init
git submodule add https://github.com/theNewDynamic/gohugo-theme-ananke.git themes/ananke
echo "theme = 'ananke'" >> hugo.toml
hugo server
2. Add content
https://gohugo.io/getting-started/quick-start/#configure-the-site
hugo new content posts/my-first-post.md
3. Create a Netlify account
4. Create a new site with continuous deployment
https://gohugo.io/hosting-and-deployment/hosting-on-netlify/
を参考に。。