使用 Hugo 建立部落格

做法

安裝 hugo 指令。

1
brew install hugo

建立部落格。

1
2
hugo new site example
cd example

新增主題。

1
2
3
git init
git submodule add https://github.com/theNewDynamic/gohugo-theme-ananke.git themes/ananke
echo "theme = 'ananke'" >> hugo.toml

新增文章。

1
hugo new posts/my-first-post.md

啟動服務。

1
hugo server -D