1. 準備工作#
2. 搭建站點#
新建 hugo 站點:hugo new site your-blog-site
目錄格式應該是這樣的:
---archetypes
---assets
---content
---date
---i18n
---layout
---static
---themes
---hugo.toml
3. 更改主題#
-
將主題文件拖入
themes
-
在 hugo.toml 中添加如下代碼:
baseURL = "https://your-site.com" title = "your-site-name" languageCode = "en-us" theme = "name"#主題文件夾名字需要和這個一致
4. 新建頁面#
- 在 content 中新建一個
archive.md
title: "archive"
layout: "archives"
url: "/archives/"
summary: archives
5. 新建文章#
在 git 中輸入
hugo new /content/posts/the-first-post.md
6. 部署站點到本地#
hugo server -D