1. 准备工作

2. 搭建站点

新建hugo站点hugo new site your-blog-site

目录格式应该是这样的

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
---archetypes

---assets

---content

---date

---i18n

---layout

---static

---themes

---hugo.toml

3. 更改主题

  • 将主题文件拖入themes

  • 在hugo.toml中添加如下代码:

    1
    2
    3
    4
    
    baseURL = "https://your-site.com"
    title = "your-site-name"
    languageCode = "en-us"
    theme = "name"#主题文件夹名字需要和这个一致
    

4. 新建页面

  • 在content中新建一个archive.md
1
2
3
4
title: "archive
layout: "archives"
url: "/archives/"
summary: archives

5. 新建文章

在git中输入

1
hugo new /content/posts/the-first-post.md

6. 部署站点到本地

1
hugo server -D

image-20241013134216700