使用hugo搭建网站-他与她漫画
## doc
https://gohugo.io/getting-started/quick-start/
https://www.git-scm.com/book/en/v2/Git-Tools-Submodules
https://themes.gohugo.io/
https://themes.gohugo.io/themes/hugo-theme-cleanwhite/
https://themes.gohugo.io/themes/hugo-theme-cleanwhite/#comment-systems
## install
brew install hugo
hugo version
hugo new site myhugowebsite
## download theme
cd myhugowebsite
git init
git submodule add https://file.jqhtml5.com/file/view/20221016/oy542d1xd02 themes/hugo-theme-cleanwhite
cp -r themes/hugo-theme-cleanwhite/exampleSite/** ./
## add content
hugo new post/my-first-post.md
## launch
hugo server -D
## build static pages
hugo -D