-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhugo.toml
88 lines (79 loc) · 1.93 KB
/
hugo.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
baseURL = "https://blog.cvyl.me/"
DefaultContentLanguage = "en" # Theme's display language, supports: en, fr, zh, zh-hant
languageCode = "en-us"
title = "@cvyl's blog"
copyright = "Mikka 本站遵循 CC-BY-NC 4.0 协议"
theme = "diary"
# googleAnalytics = "UA-123-45"
[markup]
[markup.highlight]
codeFences = true
guessSyntax = false
hl_Lines = ""
lineNoStart = 1
lineNos = false
lineNumbersInTable = true
noClasses = true
style = "perldoc"
tabWidth = 4
[params]
subtitle = ""
enableGitalk = false
# Microsoft Clarity (https://clarity.microsoft.com/) is a free user behavior recording and analytics tool
# clarity = "abcdefghzd"
# Twitter Card and Open Graph settings
enableOpenGraph = true
enableTwitterCards = true
title = "@cvyl's blog" # will set 'og:site_name'
description = "My little diary" # will set 'og:description'
[params.gitalk]
owner = "user"
repo = "repo name"
client_id = "your client id"
client_secret = "your client secret"
[taxonomies]
tag = "tags"
category = "categories"
[params.utterances]
repo="your repo"
term="[ENTER TERM HERE]"
label="your label"
theme="github-light"
# Please visit https://giscus.app/ to generate settings.
[params.giscus]
data_repo="user/repo"
data_repo_id="*****************************"
data_category="General"
data_category_id="********************"
data_mapping="pathname"
data_strict="0"
data_reactions_enabled="1"
data_emit_metadata="0"
data_input_position="bottom"
data_theme="preferred_color_scheme"
data_lang="en"
crossorigin="anonymous"
[[menu.main]]
url = "/posts"
name = "Entries"
weight = 1
[[menu.main]]
url = "/tags"
name = "Tags"
weight = 3
[[menu.main]]
url = "/about/friends"
name = "Friends"
weight = 4
[[menu.main]]
url = "/about/mikka"
name = "About me"
weight = 5
[[menu.main]]
url = "https://cvyl.me"
name = "Homepage"
weight = 6
[[menu.main]]
url = "/index.xml"
name = "RSS Feed"
weight = 7