用 Hugo 建立靜態網頁
工具
使用 brew 安裝所需工具
安裝 Hugo :
brew install hugo
安裝 Git :
brew install git
建立 Hugo 專案
hugo new site [path]
安裝佈景主題
安裝 :
git submodule add [theme git repository url] themes/主題名稱
更新主題 :
git submodule update
設定主題 :
可以從 themes/主題名稱/exampleSite/config.toml 看到主題相關設定範例
編輯專案根目錄 hugo.toml,加入
theme = "主題名稱"
建立新文章
hugo new post/first.md
測試
hugo server --buildDrafts --watch
Happy Coding 😊