如何使用gohugo/hugo建立一個靜態網站?

banq發表於2019-01-02

2018是靜態站點生成器的一年。靜態站點和動態站點之間的爭論達到了一種理解水平,兩種型別都被視為平等選擇,這是靜態站點的巨大飛躍。在不同的靜態站點中,GoHugo被記錄為最可靠的靜態站點生成器之一。

1. windows下安裝方式,點選標題進入下載頁面,選擇Windows版本下載

2. 安裝執行,解壓,切換到解壓目錄:

hugo new site quickstart

以上將在名為quickstart的資料夾中新的建立一個Hugo站點。

3.下面開始新增主題模板:

cd quickstart;\
git init;\
git submodule add https://github.com/budparr/gohugo-theme-ananke.git themes/ananke;\

Hugo十大主題模板

# 編輯你的 config.toml配置檔案,加入Ananke主題.
echo 'theme = "ananke"' >> config.toml

4. 新增一些內容
..\hugo new posts/my-first-post.md

注意,hugo命令可能在quickstart上一級目錄

5. 執行伺服器:
 ..\hugo server -D

Started building sites ...
Built site for language en:
1 of 1 draft rendered
0 future content
0 expired content
1 regular pages created
8 other pages created
0 non-page files copied
1 paginator pages created
0 categories created
0 tags created
total in 18 ms
Watching for changes in /Users/bep/sites/quickstart/{data,content,layouts,static,themes}
Serving pages from memory
Web Server is available at http://localhost:1313/ (bind address 127.0.0.1)
Press Ctrl+C to stop


6. 瀏覽器訪問
//localhost:1313/
,可見到黑底白紙:My New Hugo Site

相關文章