Go Hugo

Go Hugo 是一個基於 Golang 產生靜態網站的 SSG (static site generation) 框架 基本概念 site 一個 go hugo 產生的靜態網站 content 網站中的靜態頁面、靜態內容 configuration 設定 go hugo 產生的靜態網站 (site configuration) 重要操作 create a site hugo new site add content hugo new content <path-to-content>,網站的主題 (theme) 通常會被放在 /themes 底下。 ...

2025-02-14

Git Submodules

git submodules 當你的專案需要依賴於外部的 git repo、library 時,可以透過 git submodule 將該外部依賴引入至你的專案中。 git submodule 會將外部依賴的某個 commit 引入到你的 repo 中。 How to use? 查看 submodule git submodule status ...

2025-02-14