Hugo
Hugo譯為雨果,Go 語言實現(xiàn)的一個博客生成器闯割。
進入官網(wǎng)——https://gohugo.io/
以下為Mac安裝介紹
* Mac安裝方式
1. 用Homebrew快速安裝
```
brew install hugo
Hugo Version
```
2.?創(chuàng)建一個新站點
`hugo new site quickstart`
3. 添加主題
```
cd quickstart
git init
git submodule add https://github.com/budparr/gohugo-theme-ananke.git themes/ananke
echo 'theme = "ananke"' >> config.toml
```
4.?添加一些內(nèi)容
`hugo new posts/my-first-post.md`
5.?啟動Hugo服務器
`hugo server -D`
在http:// localhost:1313 /導航到新站點
6. 自定義主題
站點配置
config.toml在文本編輯器中打開:
```
baseURL ="https://example.org/"
languageCode ="ch-Hans"
title ="My New Hugo Site"
theme ="ananke"
```
如果您已準備好域名恳守,需要設(shè)置baseURL结笨。
提示:在Hugo服務器運行時對站點配置或站點中的任何其他文件進行更改嘱巾,您將立即看到瀏覽器中的更改顷歌,但您可能需要清除緩存气忠。
7. 構(gòu)建靜態(tài)頁面
`hugo`
./public/默認情況下輸出將在目錄中(-d/?--destinationflag更改它邻储,或publishdir在配置文件中設(shè)置)。