-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhugo.toml
More file actions
47 lines (41 loc) · 935 Bytes
/
Copy pathhugo.toml
File metadata and controls
47 lines (41 loc) · 935 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
baseURL = "https://my-blog-six-taupe-57.vercel.app/" # 部署后更新
languageCode = "zh-cn"
title = "我的博客"
theme = "PaperMod"
# 构建设置
buildDrafts = false
buildFuture = false
[params]
author = "Sapphire"
description = "个人博客"
defaultTheme = "auto" # auto, light, dark
ShowReadingTime = true
ShowPostNavLinks = true
ShowBreadCrumbs = true
ShowCodeCopyButtons = true
[params.homeInfoParams]
Title = "Welcome"
Content = "这是我的个人博客"
[[params.socialIcons]]
name = "github"
url = "https://github.com/wutia0wu"
[menu]
[[menu.main]]
name = "文章"
url = "/posts/"
weight = 1
[[menu.main]]
name = "归档"
url = "/archives/"
weight = 2
[[menu.main]]
identifier = "search"
name = "搜索"
url = "/search/"
weight = 3
[[menu.main]]
name = "关于"
url = "/about/"
weight = 4
[outputs]
home = ["HTML", "RSS", "JSON"]