Create a new site

Create a new site with the name “quickstart”.

hugo new site quickstart
cd quickstart
git init

Add an new theme

git submodule add https://github.com/vaga/hugo-theme-m10c.git themes/m10c
echo 'theme = "m10c"' >> config.toml

Add a post

hugo new posts/my-first-post.md

Run local server

hugo -D server --navigateToChanged