-
Notifications
You must be signed in to change notification settings - Fork 8
/
config.toml
320 lines (265 loc) · 7.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
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
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
################################# Default configuration ###################
# provide your domain here
baseURL = "https://biokic.github.io/symbiota-docs/"
# theme
theme = "dot"
# site title
title = "Symbiota Docs"
# disable language
# disableLanguages = []
# google analytics
googleAnalytics = "G-MPX39Z5FZQ" # global tag; should use universal instead
# unsafe html
[markup.goldmark.renderer]
unsafe = true
# enables creation of index for full-text search
[outputs]
home = [ "HTML", "JSON" ]
############################# Default Parameters ##########################
[params]
editURL = "https://github.com/BioKIC/symbiota-docs/edit/master/content/"
# logo is for all page
logo = ""
# logo white is for homepage logo, you can use colorful logo too...
logo_white = ""
# when logo is empty, it will shown your site title
# customize color
#primary_color = "#02007e"
primary_color = "#428500"
body_color = "#f9f9f9"
text_color = "#636363"
text_color_dark = "#242738"
white_color = "#ffffff"
light_color = "#f8f9fa"
# font family
font_family = "lato" # Choose font family from : https://fonts.google.com/
# contact form action
#contact_form_action = "#" # contact form works #with : https://formspree.io
[[params.plugins.css]]
link = "/assets/css/custom.css"
############################## social links ##############################
[[params.social]]
# icon = "ti-facebook" # themify icon pack : https://themify.me/themify-icons
# link = "#"
[[params.social]]
# icon = "ti-twitter-alt" # themify icon pack : https://themify.me/themify-icons
# link = "#"
[[params.social]]
# icon = "ti-github" # themify icon pack : https://themify.me/themify-icons
# link = "#"
[[params.social]]
# icon = "ti-linkedin" # themify icon pack : https://themify.me/themify-icons
# link = "#"
################################ English Language ######################
[Languages.en]
languageName = "En"
languageCode = "en-us"
weight = 1
#copyright = "Put together with \u2665 by [Laura](https://laura.rochaprado.com/)"
copyright = "© 2024 [Symbiota Support Hub](https://symbiota.org)"
# banner
[Languages.en.params.banner]
title = "Symbiota Documentation"
subtitle = "Growing archive of help files for one of the most popular Natural History content management systems"
bg_image = "images/annie-spratt-5cFwQ-WMcJU-unsplash.jpg"
placeholder = "Quick search for terms here. Press enter to go to results page."
# call to action
[Languages.en.params.cta]
enable = true
title = "Still need help?"
content = ""
# call to action button
[Languages.en.params.cta.button]
enable = true
label = "contact us"
link = "contact"
################## english navigation #################
[[Languages.en.menu.main]]
name = "Home"
url = "/"
weight = 1
[[Languages.en.menu.main]]
name = "About"
url = "about"
weight = 2
[[Languages.en.menu.main]]
name = "Faq"
url = "faq"
weight = 3
[[Languages.en.menu.main]]
name = "Citing The Docs"
url = "citing"
weight = 4
[[Languages.en.menu.main]]
name = "Contact"
url = "contact"
weight = 5
[[Languages.en.menu.main]]
name = "Contributing"
url = "contribute"
weight = 6
[[Languages.en.menu.main]]
name = "Search"
pre = "<i class='ti-search search-icon'></i>"
url = "search"
weight = 7
# Dropdown menu
[[Languages.en.menu.main]]
weight = 8
name = "Docs"
hasChildren = true
[[Languages.en.menu.main]]
parent = "Docs"
name = "Developer Guide"
url = "dev"
weight = 4
[[Languages.en.menu.main]]
parent = "Docs"
name = "User Guide"
url = "user"
weight = 1
[[Languages.en.menu.main]]
parent = "Docs"
name = "Editor Guide"
url = "editor"
weight = 2
[[Languages.en.menu.main]]
parent = "Docs"
name = "Collection Manager Guide"
url = "coll_manager"
weight = 3
################################ Spanish Language ######################
[Languages.es]
languageName = "Es"
languageCode = "es"
weight = 2
copyright = "© 2021 [Symbiota Support Hub](https://symbiota.org)"
# banner
[Languages.es.params.banner]
title = "Documentación de Symbiota"
subtitle = "Un archivo creciente de documentos de ayuda para uno de los sistemas de manejo de contenido de Historia Natural más populares"
bg_image = "images/annie-spratt-5cFwQ-WMcJU-unsplash.jpg"
placeholder = "Busque contenido aquí"
# call to action
[Languages.es.params.cta]
enable = true
title = "¿Aún necesita ayuda?"
content = ""
# call to action button
[Languages.es.params.cta.button]
enable = true
label = "contáctenos"
link = "contact"
################## spanish navigation #################
[[Languages.es.menu.main]]
name = "Inicio"
url = "/"
weight = 1
[[Languages.es.menu.main]]
name = "Acerca De"
url = "about"
weight = 2
[[Languages.es.menu.main]]
name = "Faq"
url = "faq"
weight = 3
[[Languages.es.menu.main]]
name = "Citando los Documentos"
url = "citing"
weight = 4
[[Languages.es.menu.main]]
name = "Contáctenos"
url = "contact"
weight = 5
[[Languages.es.menu.main]]
name = "Contribuyendo"
url = "contribute"
weight = 6
[[Languages.es.menu.main]]
name = "Buscar"
url = "search"
weight = 7
# Dropdown menu
[[Languages.es.menu.main]]
weight = 8
name = "Docs"
hasChildren = true
[[Languages.es.menu.main]]
parent = "Docs"
name = "Guía para Desarrolladores"
url = "dev"
weight = 4
[[Languages.es.menu.main]]
parent = "Docs"
name = "Guía para Usuarios"
url = "user"
weight = 1
[[Languages.es.menu.main]]
parent = "Docs"
name = "Guía para Editores"
url = "editor"
weight = 2
[[Languages.es.menu.main]]
parent = "Docs"
name = "Guía para Encargados de Colecciones"
url = "coll_manager"
weight = 3
################################### Franch Language ######################
[Languages.fr]
languageName = "Fr"
languageCode = "fr-fr"
weight = 3
#copyright = "Copyright © 2020 un thème Hugo par [Gethugothemes](https://gethugothemes.com/)"
copyright = "© 2021 [Symbiota Support Hub](https://symbiota.org)"
# banner
[Languages.fr.params.banner]
title = "Symbiota Documentation"
subtitle = "Growing archive of help files for one of the most popular Natural History content management systems"
bg_image = "images/annie-spratt-5cFwQ-WMcJU-unsplash.jpg"
placeholder = "Avoir une question? Il suffit de demander ici ou de saisir les termes"
# call to action
[Languages.fr.params.cta]
enable = true
title = "Vous n'avez pas trouvé de réponse à votre question?"
content = "Contactez-nous pour plus de détails sur les services supplémentaires et la tarification du travail personnalisé"
# call to action button
[Languages.fr.params.cta.button]
enable = true
label = "Contactez nous"
link = "contact"
################## french navigation #################
[[Languages.fr.menu.main]]
name = "Accueil"
url = "/"
weight = 1
[[Languages.fr.menu.main]]
name = "About"
url = "about"
weight = 2
[[Languages.fr.menu.main]]
name = "Faq"
url = "faq"
weight = 3
[[Languages.fr.menu.main]]
name = "Citing The Docs"
url = "citing"
weight = 4
[[Languages.fr.menu.main]]
name = "contact"
url = "contact"
weight = 5
# Dropdown menu
[[Languages.fr.menu.main]]
weight = 6
name = "docs"
hasChildren = true
[[Languages.fr.menu.main]]
parent = "docs"
name = "Developer Guide"
url = "dev"
weight = 2
[[Languages.fr.menu.main]]
parent = "docs"
name = "User Guide"
url = "user"
weight = 1