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