-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathconfig.toml
184 lines (172 loc) · 4.49 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
############################ Default configuration #########################
baseURL = "/"
# [en, zh-cn, fr, ...] determines default content language
defaultContentLanguage = "en"
# language code
languageCode = "en"
title = "Power Platform Tips & Tricks"
canonifyurls = true
paginate = 20
enableEmoji = true
# Change the default theme to be use when building the site with Hugo
theme = "DoIt"
[params]
# DoIt theme version
version = "0.2.X"
[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 = 3
[[menu.main]]
identifier = "categories"
pre = ""
post = ""
name = "Categories"
url = "/categories/"
title = ""
weight = 4
[[menu.main]]
identifier = "glossary"
pre = ""
post = ""
name = "Glossary"
url = "/glossary/"
title = ""
weight = 5
[[menu.main]]
identifier = "aboutme"
pre = ""
post = ""
name = "About me"
url = "/Aboutme/"
title = ""
weight = 6
[[menu.main]]
identifier = "speaking"
pre = ""
post = ""
name = "Speaking"
url = "/speakingengagements/"
title = ""
weight = 7
[[menu.main]]
identifier = "videos"
pre = ""
post = ""
name = "Videos"
url = "/videos/"
title = ""
weight = 8
[[menu.main]]
identifier = "contact"
pre = ""
post = ""
name = "Contact"
url = "/contact/"
title = ""
weight = 9
[[menu.main]]
identifier = "recommended"
pre = ""
post = ""
name = "Awesome people"
url = "/recommended/"
title = ""
weight = 10
[params.home.profile]
enable = true
# Gravatar Email for preferred avatar in home page
gravatarEmail = ""
# URL of avatar shown in home page
avatarURL = "image.jpg"
social = true
# URL the avatar links to
avatarLinkURL = "/aboutme"
[params.header.title]
# URL of the LOGO
logo = "/logo.png"
# title name
name = "Power Platform Tips & Tricks"
# 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 = ""
# {{< version 0.2.5 >}} whether to use typeit animation for title name
typeit = true
[params.social]
Twitter="@NathLeenders"
LinkedIn="nathalie-leenders-den-nijs-8853871b/"
Github="Nathalie-Leenders"
Email="[email protected]"
BuyMeaCoffee="NathalieLeenders"
CodePen="Nathalie-Leenders"
# Google analytics
[params.analytics]
enable = true
# Google Analytics
[params.analytics.google]
id = "G-G0R550W0TM"
anonymizeIP = true
[params.analytics.clarity]
id = "h4un3ap4e1"
[params.page.comment]
enable = true
[params.page.comment.utterances]
enable = true
repo="Nathalie-Leenders/nathalie-leenders.github.io" # eg: greeninja/devurandom-comments
theme="github-dark"
[outputs]
home = ["HTML", "RSS", "JSON"]
[params.search]
enable = true
# type of search engine ("algolia", "fuse")
type = "fuse"
# max index length of the chunked content
contentLength = 4000
# placeholder of the search bar
placeholder = ""
# DoIt NEW | 0.2.1 max number of results length
maxResultLength = 10
# DoIt NEW | 0.2.3 snippet length of the result
snippetLength = 30
# DoIt NEW | 0.2.1 HTML tag name of the highlight part in results
highlightTag = "em"
# DoIt NEW | 0.2.4 whether to use the absolute URL based on the baseURL in search index
absoluteURL = false
[params.search.algolia]
index = ""
appID = ""
searchKey = ""
[params.search.fuse]
# DoIt NEW | 0.2.12 https://fusejs.io/api/options.html
isCaseSensitive = false
minMatchCharLength = 2
findAllMatches = false
location = 0
threshold = 0.3
distance = 100
ignoreLocation = false
useExtendedSearch = false
ignoreFieldNorm = false
# 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