-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhugo.toml
More file actions
174 lines (146 loc) · 3.67 KB
/
hugo.toml
File metadata and controls
174 lines (146 loc) · 3.67 KB
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
baseURL = 'https://bsong2015.github.io/blog/'
languageCode = "zh-CN" # 设置默认语言为简体中文
defaultContentLanguage = "zh" # 内容默认语言标识(与多语言配置匹配)
title = "万年水的博客"
theme = ["PaperMod"]
[params]
defaultTheme = "auto"
disableSpecial1stPost = true
[params.author]
name = "万年水"
email = ""
# 配置中文语言细节(可选但推荐)
[languages.zh]
languageName = "中文"
weight = 1 # 权重,用于多语言排序
[frontmatter]
slug = ":filename"
[security]
fileGetDir = "content/**" # 显式允许中文路径
# 前沿技术 (一级菜单)
[[menu.main]]
identifier = "cutting-edge-technology"
name = "前沿技术"
# 如果您有一个技术汇总页,可以取消下面的注释并修改链接
# url = "/posts/technology/"
weight = 10
# “前沿技术”的子菜单
[[menu.main]]
parent = "cutting-edge-technology"
identifier = "artificial-intelligence"
name = "人工智能"
url = "/posts/artificial-intelligence/"
weight = 1
[[menu.main]]
parent = "cutting-edge-technology"
identifier = "blockchain"
name = "区块链"
url = "/posts/blockchain/"
weight = 2
[[menu.main]]
parent = "cutting-edge-technology"
identifier = "iam-idaas"
name = "IAM&IDaaS"
url = "/posts/iam/"
weight = 3
[[menu.main]]
parent = "cutting-edge-technology"
identifier = "technology"
name = "通用技术"
url = "/posts/technology/"
weight = 4
# 认知与思考 (一级菜单)
[[menu.main]]
identifier = "cognition-and-thinking"
name = "认知与思考"
weight = 20
# “认知与思考”的子菜单
[[menu.main]]
parent = "cognition-and-thinking"
identifier = "thinking-models"
name = "思维模型"
url = "/posts/thinking-models/"
weight = 1
[[menu.main]]
parent = "cognition-and-thinking"
identifier = "thought-experiments"
name = "思想实验"
url = "/posts/thought-experiments/"
weight = 2
[[menu.main]]
parent = "cognition-and-thinking"
identifier = "psychoanalysis"
name = "精神分析"
url = "/posts/psychoanalysis/"
weight = 3
# 人物与思想 (一级菜单)
[[menu.main]]
identifier = "people-and-philosophy"
name = "人物与思想"
weight = 30
# “人物与思想”的子菜单
[[menu.main]]
parent = "people-and-philosophy"
identifier = "wangyangming"
name = "王阳明"
url = "/posts/wangmingyang/"
weight = 1
[[menu.main]]
parent = "people-and-philosophy"
identifier = "naval"
name = "纳瓦尔"
url = "/posts/naval/"
weight = 2
[[menu.main]]
parent = "people-and-philosophy"
identifier = "capital"
name = "马克思资本论"
url = "/posts/capital/"
weight = 3
# 生活与视野 (一级菜单)
[[menu.main]]
identifier = "life-and-horizon"
name = "生活与视野"
weight = 40
# “生活与视野”的子菜单
[[menu.main]]
parent = "life-and-horizon"
identifier = "personal-growth"
name = "个人成长"
url = "/posts/personal-growth/"
weight = 1
[[menu.main]]
parent = "life-and-horizon"
identifier = "reading"
name = "阅读"
url = "/posts/reading/"
weight = 2
[[menu.main]]
parent = "life-and-horizon"
identifier = "current-affairs"
name = "时事"
url = "/posts/current-affairs/"
weight = 3
# 其它 (独立一级菜单)
[[menu.main]]
identifier = "others"
name = "其它"
url = "/posts/others/"
weight = 50
# 关于 (独立一级菜单)
[[menu.main]]
identifier = "about"
name = "关于"
url = "/about/"
weight = 60
[imaging]
quality = 75
resampleFilter = "Lanczos"
[params.mermaid]
enable = true
[markup]
[markup.goldmark]
[markup.goldmark.renderer]
unsafe = true
[build]
enableGitInfo = true