Hugo筆記
記錄這個網站的指令和要點
Hugo下載
https://github.com/gohugoio/hugo/releases
指令
新增一篇文章
hugo new post/title.md
本地Hosting
hugo server
可選項 | 說明 |
---|---|
-D | 建構草稿 |
-F | 建構未到發佈時間的文章 |
局域網Hosting
hugo server --bind=192.168.?.? --baseURL=http://192.168.?.?:1313
建構
hugo
可選項 | 說明 |
---|---|
-D | 建構草稿 |
-F | 建構未到發佈時間的文章 |
-w | 持續觀察變化 |
自訂CSS
- 在static/css/新增tranquilpeak.css
- 在config.toml設定
customCSS = ["css/tranquilpeak.css"]