Hugo 教學

install

先去 copr 裝hugo官方的repo

1
yum install hugo

應該就有hugo可以用了 2025 Ubuntu 24 Apt 安裝版本為 0.123.7; Githab last is 0.143.1, 有些 theme 可不能用

Hugo is available in three editions: standard, extended, and extended/deploy. 至少要 extended 才有 Webp 及 SASS

使用

裝theme

1
git clone https://github.com/hauke96/hugo-theme-hamburg.git themes/hamburg

改設定檔

1
2
3
4
baseURL = "http://example.org/"
languageCode = "en-us"
title = "ericchen"
theme = "hamburg"
1
2
3
4
5
hugo new site blog
cd blog
hugo new posts/myfirst.md
hugo                       #生成網頁
hugo server -D

myfirst應該會出現在content下面

Template lookup order

如果要覆蓋 themes 提供的文件,如 themes/hugo-theme-next/assets/css/_variables/base.scss 可以用assets/css/_variables/base.scss 覆蓋,確定可以覆蓋scss 跟靜態文件,預設 site 根資料夾中沒有 assets 請直接創一個

hugo-theme-next

hugo-theme-next-starter 開始,自己建 site 會 build 不過

ref

https://coolgood88142.github.io/zh-tw/posts/hugo/