-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.toml
214 lines (186 loc) · 9.55 KB
/
config.toml
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
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
# This is a simple configuration. debug`
# If you want to see the full configuration, please check `full-config.toml` .
# And see https://gohugo.io/getting-started/configuration/ .
#baseURL = "https://www.sgfoot.com/"
#baseURL = "https://yezihack.github.io/"
#baseURL = "https://sgfoot.gitee.io/"
title = "空樹之空的博客"
enableRobotsTXT = true
enableEmoji = true
theme = "jane"
hasCJKLanguage = true # has chinese/japanese/korean ? # 自动检测是否包含 中文\日文\韩文
paginate = 10 # Number of articles displayed on the homepage # 首页每页显示的文章数
rssLimit = 50 # Limit Entry Count to Rss file # 限制 Rss 文章输出数量
disqusShortname = "" # disqus_shortname
googleAnalytics = "" # UA-XXXXXXXX-X by UA-163385108-1
#copyright = "百里江山 | <a href='www.miitbeian.gov.cn'>京ICP备17053344号-1</a>" # default: author.name ↓ # 默认为下面配置的author.name ↓
copyright = "<a href='https://www.sgfoot.com'>空樹之空</a>" # default: author.name ↓ # 默认为下面配置的author.name ↓
uglyURLs = true
# Highlight options. 代码区的样式显示.
# See https://gohugo.io/content-management/syntax-highlighting/
PygmentsCodeFences = true # Enable syntax highlighting with GitHub flavoured code fences
PygmentsUseClasses = true # Use CSS classes to format highlighted code
PygmentsCodefencesGuessSyntax = true
PygmentsOptions = "linenos=table"
# language support # en / zh-cn / other... translations present in i18n/
defaultContentLanguage = "zh-cn" # 默认使用的语言
[Languages.zh-cn]
languageCode = "zh-cn"
[permalinks]
#post = "/:year/:month/:day/:filename"
post = "/:filename"
[author] # essential # 必需
name = "百里"
[sitemap] # essential # 必需
changefreq = "weekly"
priority = 0.5
filename = "sitemap.xml"
[[menu.main]] # config your menu # 配置目录
name = "首页"
weight = 10
identifier = "home"
url = "/"
[[menu.main]]
name = "归档"
weight = 15
identifier = "archives"
url = "/post.html"
[[menu.main]]
name = "标签云"
weight = 20
identifier = "tags"
url = "/tags.html"
[[menu.main]]
name = "分类"
weight = 25
identifier = "categories"
url = "/categories.html"
[[menu.main]]
name = "教程"
weight = 35
[[menu.main]]
parent = "教程"
name = "Go 实践教程"
weight = 1
identifier = "golang"
url = "/categories/go教程.html"
[[menu.main]]
parent = "教程"
name = "Docker笔记"
weight = 5
identifier = "docker"
url = "/tags/docker教程.html"
[[menu.main]]
parent = "教程"
name = "Prometheus"
weight = 10
identifier = "prometheus"
url = "/tags/prometheus.html"
[[menu.main]]
parent = "教程"
name = "设计模式"
weight = 15
identifier = "design"
url = "/tags/设计模式.html"
[[menu.main]]
name = "自我驱动"
weight = 36
[[menu.main]]
parent = "自我驱动"
name = "读书笔记"
weight = 1
identifier = "read-marking"
url = "/tags/读书笔记.html"
[[menu.main]]
parent = "自我驱动"
name = "工程师"
weight = 5
identifier = "program-side"
url = "/tags/工程师.html"
[[menu.main]]
parent = "自我驱动"
name = "价值分享"
weight = 10
identifier = "share"
url = "/tags/分享.html"
# 谷歌广告
[params.adsense]
enable = false
client = "ca-pub-6145899430951391"
gtag = "UA-163385108-1"
[params]
since = "2020" # Site creation time # 站点建立时间
homeFullContent = false # if false, show post summaries on home page. Otherwise show full content.
rssFullContent = true # if false, Rss feed instead of the summary
# site info (optional) # 站点信息(可选,不需要的可以直接注释掉)
logoTitle = "空樹之空" # default: the title value # 默认值: 上面设置的title值
keywords = ["Go语言", "MySQL", "Redis", "设计模式", "读书笔记", "人生感悟"]
description = "Go语言,Golang开发,算法,设计模式,架构,Linux,Kubernetes,Docker,读书笔记及人生感悟-空樹之空的个人博客"
# paginate of archives, tags and categories # 归档、标签、分类每页显示的文章数目,建议修改为一个较大的值
archive-paginate = 100
# The date format to use; for a list of valid formats, see https://gohugo.io/functions/format/
dateFormatToUse = "2006-01-02"
# 一些全局开关,你也可以在每一篇内容的 front matter 中针对单篇内容关闭或开启某些功能,在 archetypes/default.md 查看更多信息。
# Some global options, you can also close or open something in front matter for a single post, see more information from `archetypes/default.md`.
toc = false # 是否开启目录
photoswipe = true # see https://github.com/dimsemenov/PhotoSwipe # 是否启用PhotoSwipe(图片可点击)
contentCopyright = '<a rel="license noopener" href="https://creativecommons.org/licenses/by-nc-nd/4.0/" target="_blank">CC BY-NC-ND 4.0</a>'
changyanAppid = "" # Changyan app id # 畅言
changyanAppkey = "" # Changyan app key
tencent_analytics = "" # Tencent Analytics
baidu_push = true # baidu push # 百度
baidu_analytics = "90b270e075265ec9aad9847f47bb1f42" # Baidu Analytics
baidu_verification = "" # Baidu Verification
#google_verification = "google8e92341d63465cfb" # Google_Verification # 谷歌
# Link custom CSS and JS assets
# (relative to /static/css and /static/js respectively)
customCSS = ["toc.css"] # if ['custom.css'], load '/static/css/custom.css' file
customJS = [] # if ['custom.js'], load '/static/js/custom.js' file
# enable 'fork me on github', see https://blog.github.com/2008-12-19-github-ribbons/
# forkMeOnGithub = "https://github.com/yezihack"
# show word count and read time ? # 是否显示字数统计与阅读时间
moreMeta = true
[params.utteranc] # utteranc is a comment system based on GitHub issues. see https://utteranc.es
enable = true
repo = "yezihack/yezihack.github.io" # The repo to store comments
issueTerm = "og:title" # pathname, og:title,url,title,issue-number,specific-term
[params.counter.busuanzi] # a Chinese visitor counter # 不蒜子计数器
enable = true
[params.publicCDN] # load these files from public cdn # 启用公共CDN,需自行定义
enable = false
jquery = '<script src="https://cdn.jsdelivr.net/npm/jquery@3.2.1/dist/jquery.min.js" integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4=" crossorigin="anonymous"></script>'
slideout = '<script src="https://cdn.jsdelivr.net/npm/slideout@1.0.1/dist/slideout.min.js" integrity="sha256-t+zJ/g8/KXIJMjSVQdnibt4dlaDxc9zXr/9oNPeWqdg=" crossorigin="anonymous"></script>'
gitmentJS = '<script src="https://cdn.jsdelivr.net/npm/gitment@0.0.3/dist/gitment.browser.min.js" crossorigin="anonymous"></script>'
gitmentCSS = '<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/gitment@0.0.3/style/default.min.css" crossorigin="anonymous">'
photoswipe = '<script src="https://cdn.jsdelivr.net/npm/photoswipe@4.1.3/dist/photoswipe.js" integrity="sha256-AC9ChpELidrhGHX23ZU53vmRdz3FhKaN9E28+BbcWBw=" crossorigin="anonymous"></script>'
photoswipeUI = '<script src="https://cdn.jsdelivr.net/npm/photoswipe@4.1.3/dist/photoswipe-ui-default.min.js" integrity="sha256-UKkzOn/w1mBxRmLLGrSeyB4e1xbrp4xylgAWb3M42pU=" crossorigin="anonymous"></script>'
photoswipeCSS = '<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/photoswipe@4.1.3/dist/photoswipe.css" integrity="sha256-SBLU4vv6CA6lHsZ1XyTdhyjJxCjPif/TRkjnsyGAGnE=" crossorigin="anonymous">'
photoswipeSKIN = '<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/photoswipe@4.1.3/dist/default-skin/default-skin.css" integrity="sha256-c0uckgykQ9v5k+IqViZOZKc47Jn7KQil4/MP3ySA3F8=" crossorigin="anonymous">'
[params.search.google] # google custom search, see https://cse.google.com
enable = false
id = "001496614017255051684:v8lrdwgteq1"
title = "Search"
[params.reward] # 文章打赏
enable = true
wechat = "http://img.sgfoot.com/b/20200417142450.jpg?imageslim" # 微信二维码
#alipay = "/path/to/your/alipay-qr-code.png" # 支付宝二维码
[params.social] # 社交链接
a-email = "mailto:freeit@126.com"
#b-stack-overflow = "http://localhost:1313"
#c-twitter = "http://localhost:1313"
#d-facebook = "http://localhost:1313"
#e-linkedin = "http://localhost:1313"
#f-google = "http://localhost:1313"
g-github = "https://www.github.com/yezihack"
#h-weibo = "http://localhost:1313"
#i-zhihu = "http://localhost:1313"
#j-douban = "http://localhost:1313"
#k-pocket = "http://localhost:1313"
#l-tumblr = "http://localhost:1313"
#m-instagram = "http://localhost:1313"
#n-gitlab = "http://localhost:1313"
#o-goodreads = "http://localhost:1313"
#p-coding = "http://localhost:1313"
#q-bilibili = "http://localhost:1313"
#r-codeforces = "http://localhost:1313"
#s-mastodon = "http://localhost:1313"