安裝
安裝
使用 hugo 指令開啟新的站台
hugo new site my-hugo-sites
將 Stack 主題當作子模組加到 themes/hugo-theme-stack
目錄
git submodule add https://github.com/CaiJimmy/hugo-theme-stack/ themes/hugo-theme-stack
用子模組的用意是當主題版本有更新時,可以在子模組直接重新 git pull
做更新,在版本控管上比較方便
設定 config 檔案
Stack 主題的設定檔案是用 yaml
格式的檔案去管理,所以可以先行移除 Hugo 預設的 config.toml
檔案,然後將主題下面的部落格範例目錄 themes/hugo-theme-stack/exampleSite
下方的檔案複製到 Hugo 網站根目錄,裡面會有 config.yaml
的設定檔,及 Stack 的測試文章
測試
設定完後就可以直接執行 hugo 指令開啟網站測試 http://localhost:1313
hugo server -D