-
Notifications
You must be signed in to change notification settings - Fork 3
/
config.toml
125 lines (118 loc) · 3.34 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
baseURL = "https://taetaetae.github.io/"
# [en, zh-cn, fr, ...] determines default content language
defaultContentLanguage = "en"
# language code
languageCode = "en"
title = "👨💻꿈꾸는 태태태의 공간"
# Change the default theme to be use when building the site with Hugo
theme = "LoveIt"
summaryLength=500
[params]
# LoveIt theme version
version = "0.2.X"
defaultTheme = "auto"
[params.header]
# desktop header mode ("fixed", "normal", "auto")
desktopMode = "auto"
# mobile header mode ("fixed", "normal", "auto")
mobileMode = "auto"
[params.footer]
enable = true
since = 2016
[params.home.profile]
enable = true
avatarURL = "/images/profile.png"
subtitle = "Software Engineer Crazy for Growth"
# whether to use typeit animation for subtitle
typeit = true
# whether to show social links
social = true
[params.social]
GitHub = "taetaetae"
Linkedin = "taetaetae"
Instagram = "_taetaetae"
Facebook = "taetaetae0"
Email = "[email protected]"
RSS = true
[params.page]
lightgallery = true
[params.page.share]
enable = true
Twitter = true
Facebook = true
Linkedin = true
Blogger = true
[params.page.code]
# whether to show the copy button of the code block
copy = true
# the maximum number of lines of displayed code by default
maxShownLines = 500
[params.page.comment]
enable = true
[params.page.comment.utterances]
enable = true
repo="taetaetae/blog-comment"
issueTerm="pathname"
label="Comment"
lightTheme = "github-light"
darkTheme = "github-dark"
[params.analytics]
enable = true
# Google Analytics
[params.analytics.google]
id = "UA-86432198-1"
# whether to anonymize IP
anonymizeIP = true
[params.typeit]
# typing speed between each step (measured in milliseconds)
speed = 100
# blinking speed of the cursor (measured in milliseconds)
cursorSpeed = 500
# character used for the cursor (HTML format is supported)
cursorChar = "|"
# cursor duration after typing finishing (measured in milliseconds, "-1" means unlimited)
duration = -1
[sitemap]
changefreq = "weekly"
filename = "sitemap.xml"
priority = 1
[author]
name = "태태태"
link = "https://taetaetae.github.io/resume"
[menu]
[[menu.main]]
identifier = "posts"
# you can add extra information before the name (HTML format is supported), such as icons
pre = ""
# you can add extra information after the name (HTML format is supported), such as icons
post = ""
name = "Posts"
url = "/posts/"
# title will be shown when you hover on this menu link
title = ""
weight = 1
[[menu.main]]
identifier = "tags"
pre = ""
post = ""
name = "Tags"
url = "/tags/"
title = ""
weight = 2
[[menu.main]]
identifier = "categories"
pre = ""
post = ""
name = "Categories"
url = "/categories/"
title = ""
weight = 3
# Markup related configuration in Hugo
[markup]
# Syntax Highlighting (https://gohugo.io/content-management/syntax-highlighting)
[markup.highlight]
# false is a necessary configuration (https://github.com/dillonzq/LoveIt/issues/158)
noClasses = false
[markup.goldmark]
[markup.goldmark.renderer]
unsafe = true