建立網站

建立 Hugo 網站

建立 Hugo 網站

hugo new site site_name

hugo new site (專案目錄名稱)

hugo new site my-hugo-sites

啟用 Hugo 網站

hugo server -D

$ hugo server -D

Start building sites …

                   | ZH
-------------------+------
  Pages            |  71
  Paginator pages  |   0
  Non-page files   | 118
  Static files     |  40
  Processed images |   2
  Aliases          |   0
  Sitemaps         |   1
  Cleaned          |   0

Built in 2010 ms
Environment: "development"
Serving pages from memory
Web Server is available at http://localhost:1313/ (bind address 127.0.0.1)
Press Ctrl+C to stop

啟用後可以在 http://localhost:1313/ 看到您的 Hugo 頁面

專案結構

.
├── archetypes
├── config.toml
├── content
├── data
├── layouts
├── static
└── themes

archetypes 文件預設類型

config.toml 網站設定檔案

content 網站文章

data 網站共用資料設定

layouts 網站樣板

static 網站靜態檔案

themes 網站主題檔案

專案建立教學

參考資料