-
-
Notifications
You must be signed in to change notification settings - Fork 81
/
config.toml
192 lines (160 loc) · 3.65 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
baseURL = "//gdquest.com/"
languageCode = "en-us"
title = "GDQuest"
titleCaseStyle = "Chicago"
disableLanguages = ["es", "fr", "ja"]
disableKinds = ["taxonomy", "term"]
paginate = 6
paginatePath = "page"
[outputFormats]
[outputFormats.search]
mediaType = "application/json"
baseName = "search"
isPlainText = true
[outputs]
home = [ "HTML", "RSS", "SEARCH" ]
[[module.mounts]]
source = "static/js"
target = "assets/js"
# Required for the virtual file system to build css
[[module.mounts]]
source = "assets/scss"
target = "assets/scss"
[[module.mounts]]
source = "static/img"
target = "assets/img"
[author]
name = "Nathan Lovato"
email = "[email protected]"
# Site parameters
[params]
topline = "Game Design Quest"
home = "home"
highlight = "default"
ytapikey = "AIzaSyAUCyzwHmO71chFn7wMa6VlBNzk0tpkFYk"
# Social network names for Meta tag SEO
twitter = "NathanGDQuest"
github_repo = "//github.com/GDQuest/GDQuest-website/"
license_copyright= "GDQuest and contributors"
[params.shop_link]
name = "Shop"
url = "https://school.gdquest.com/"
[[params.social]]
link = "//www.youtube.com/c/gdquest"
icon = "youtube"
description = "GDQuest Youtube channel"
[[params.social]]
link = "//twitter.com/NathanGDQuest"
icon = "twitter"
description = "GDQuest Twitter page"
[[params.social]]
link = "//github.com/GDQuest/"
icon = "github"
description = "GDQuest GitHub page"
[[params.social]]
link = "https://discord.gg/87NNb3Z"
icon = "discord"
description = "GDQuest community on Discord"
[related]
threshold = 80.0
includeNewer = true
toLower = false
[[related.indices]]
name = "keywords"
weight = 100.0
[[related.indices]]
name = "date"
weight = 10.0
[privacy]
[privacy.youtube]
disable = false
privacyEnhanced = true
[caches]
[caches.modules]
dir = ":cacheDir/modules"
maxAge = -1
[markup]
defaultMarkdownHandler = "goldmark"
[markup.goldmark]
[markup.goldmark.renderer]
unsafe = true
[module]
[[module.imports]]
path = "github.com/gohugoio/hugo-mod-jslibs/instantpage"
[languages]
[languages.en]
languageName = "English"
weight = 1
[[languages.en.menu.main]]
name = "Tutorials"
url = "/tutorial/"
weight = 1
[[languages.en.menu.main]]
name = "Tools"
url = "/tools/"
weight = 2
[[languages.en.menu.main]]
name = "products"
url = "/product/"
weight = 3
[[languages.en.menu.main]]
name = "About"
url = "/about/"
weight = 6
[languages.es]
languageName = "Español"
weight = 2
[[languages.es.menu.main]]
name = "Tutoriales"
url = "/tutorial/"
weight = 1
[[languages.es.menu.main]]
name = "Software"
url = "/tools/"
weight = 2
[[languages.es.menu.main]]
name = "Productos"
url = "/product/"
weight = 3
[[languages.es.menu.main]]
name = "Acerca"
url = "/about/"
weight = 6
[languages.fr]
languageName = "Français"
weight = 3
[[languages.fr.menu.main]]
name = "Tutoriels"
url = "/tutorial/"
weight = 1
[[languages.fr.menu.main]]
name = "Outils"
url = "/tools/"
weight = 2
[[languages.fr.menu.main]]
name = "Produits"
url = "/product/"
weight = 3
[[languages.fr.menu.main]]
name = "À propos"
url = "/about/"
weight = 6
[languages.ja]
languageName = "日本語"
weight = 4
[[languages.ja.menu.main]]
name = "チュートリアル"
url = "/tutorial/"
weight = 1
[[languages.ja.menu.main]]
name = "ツール"
url = "/tools/"
weight = 2
[[languages.ja.menu.main]]
name = "プロダクト"
url = "/product/"
weight = 3
[[languages.ja.menu.main]]
name = "会社情報"
url = "/about/"
weight = 6