-
Notifications
You must be signed in to change notification settings - Fork 10
/
config.toml
165 lines (133 loc) · 4.1 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
baseURL = "https://thomasadventure.blog/"
languageCode = "en-us"
defaultContentLanguage = "en"
title = "Thomas’ adventuRe"
theme = "hermit"
enableGitInfo = true
pygmentsCodefences = true
pygmentsUseClasses = true
# hasCJKLanguage = true # If Chinese/Japanese/Korean is your main content language, enable this to make wordCount works right.
rssLimit = 10 # Maximum number of items in the RSS feed.
copyright = "This work is licensed under a Creative Commons Attribution-NonCommercial 4.0 International License." # This message is only used by the RSS template.
enableEmoji = true # Shorthand emojis in content files - https://gohugo.io/functions/emojify/
ignoreFiles = ["\\.knit\\.md$", "\\.tmp.html$", "\\.utf8\\.md$", "\\.Rmd$", "\\.Rmarkdown$", "_files$", "_cache$"]
[languages]
[languages.en]
weight = 1
[[languages.en.menu.main]]
name = "Posts"
url = "posts/"
weight = 10
[[languages.en.menu.main]]
name = "Videos"
url = "videos/"
weight = 20
[[languages.en.menu.main]]
name = "About"
url = "about/"
weight = 30
[[languages.en.menu.main]]
name = "Subscribe"
url = "subscribe/"
weight = 40
[languages.zh]
weight = 2
[[languages.zh.menu.main]]
name = "Posts"
url = "posts/"
weight = 10
[[languages.zh.menu.main]]
name = "Videos"
url = "../videos/"
weight = 20
[[languages.zh.menu.main]]
name = "About"
url = "../about/"
weight = 30
[[languages.zh.menu.main]]
name = "Subscribe"
url = "../subscribe/"
weight = 40
[languages.es]
weight = 3
[[languages.es.menu.main]]
name = "Posts"
url = "posts/"
weight = 10
[[languages.es.menu.main]]
name = "Videos"
url = "../videos/"
weight = 20
[[languages.es.menu.main]]
name = "About"
url = "../about/"
weight = 30
[[languages.es.menu.main]]
name = "Subscribe"
url = "../subscribe/"
weight = 40
[languages.it]
weight = 4
[[languages.it.menu.main]]
name = "Posts"
url = "posts/"
weight = 10
[[languages.it.menu.main]]
name = "Videos"
url = "../videos/"
weight = 20
[[languages.it.menu.main]]
name = "About"
url = "../about/"
weight = 30
[[languages.it.menu.main]]
name = "Subscribe"
url = "../subscribe/"
weight = 40
[author]
name = "Thomas Neitmann"
[blackfriday]
# hrefTargetBlank = true
# noreferrerLinks = true
# nofollowLinks = true
[taxonomies]
tag = "tags"
category = "categories"
[params]
dateform = "Jan 2, 2006"
dateformShort = "Jan 2"
dateformNum = "2006-01-02"
dateformNumTime = "2006-01-02 15:04 +0700"
# Metadata mostly used in document's head
# description = ""
# images = [""]
themeColor = "#494f5c"
homeSubtitle = "My personal take on the R programming language."
footerCopyright = ' · <a href="https://creativecommons.org/licenses/by-nc/4.0/" target="_blank" rel="noopener">CC BY-NC 4.0</a>'
# bgImg = "" # Homepage background-image URL
# Prefix of link to the git commit detail page. GitInfo must be enabled.
gitUrl = "https://github.com/thomas-neitmann/blog2/commit/"
# Toggling this option needs to rebuild SCSS, requires Hugo extended version
justifyContent = false # Set "text-align: justify" to `.content`.
relatedPosts = false # Add a related content section to all single posts page
code_copy_button = true # Turn on/off the code-copy-button for code-fields
# Add custom css
customCSS = ["css/extra.css"]
# Social Icons
# Check https://github.com/Track3/hermit#social-icons for more info.
[[params.social]]
name = "youtube"
url = "https://www.youtube.com/channel/UCdJ5y9mqgXLeGzxP7u1C8nA"
[[params.social]]
name = "linkedin"
url = "https://linkedin.com/in/thomasneitmann"
[[params.social]]
name = "github"
url = "https://github.com/thomas-neitmann"
[[params.social]]
name = "twitter"
url = "https://twitter.com/thomas_neitmann"
[markup]
[markup.goldmark]
[markup.goldmark.renderer]
unsafe = true