-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.toml
109 lines (93 loc) · 3.54 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
baseURL = "https://mariel-rs.github.io/datlab"
canonifyURLs = false
relativeURLs = false
googleAnalytics = "G-RYB0SFFXNW"
#themesdir = "themes/hugo-theme-relearn"
theme = "hugo-theme-relearn"
languageCode = "es"
defaultContentLanguage = "es"
disableLanguages = ['pir', 'en']
title = "Dat Lab"
[params]
description = "Dat Lab"
author = "Mariel Reyes"
showVisitedLinks = false
collapsibleMenu = true
disableBreadcrumb = false
disableNextPrev = false
disableLandingPageButton = true
titleSeparator = "::"
#themeVariant = [ "relearn-light", "relearn-dark", "learn", "neon", "blue", "green", "red" ]
themeVariant = [ "relearn-light" ]
disableSeoHiddenPages = true
# this is for the stylesheet genertor to allow for interactivity in mermaid
# graphs; you usually will not need it and you should remove this for
# security reasons
mermaidInitialize = "{ \"securityLevel\": \"loose\" }"
[outputs]
# add JSON to the home to support lunr search; This is a mandatory setting
# for the search functionality
# add PRINT to home, section and page to activate feature to print whole
# chapters
home = ["HTML", "RSS", "PRINT", "JSON"]
section = ["HTML", "RSS", "PRINT"]
page = ["HTML", "RSS", "PRINT"]
[markup]
[markup.highlight]
# if `guessSyntax = true`, there will be no unstyled code even if no language
# was given BUT mermaid code fences will not work anymore! So this is a mandatory
# setting for your site
guessSyntax = false
# here in this showcase we use our own modified chroma syntax highlightning style
# which is imported in theme-relearn-light.css / theme-relearn-dark.css;
# if you want to use a predefined style instead:
# - remove the following `noClasses`
# - set the following `style` to a predefined style name
# - remove the `@import` of the self-defined chroma stylesheet from your CSS files
# (here eg.: theme-relearn-light.css / theme-relearn-dark.css)
noClasses = false
# style = "tango"
[markup.goldmark.renderer]
# activated for this showcase to use HTML and JavaScript; decide on your own needs;
# if in doubt, remove this line
unsafe = true
# allows `hugo server` to display this showcase in IE11; this is used for testing, as we
# are still supporting IE11 - although with degraded experience; if you don't care about
# `hugo server` or browsers of ancient times, fell free to remove this whole block
[server]
[[server.headers]]
for = "**.html"
[server.headers.values]
X-UA-Compatible = "IE=edge"
# showcase of the menu shortcuts; you can use relative URLs linking
# to your content or use fully-quallified URLs to link outside of
# your project
[Languages]
[Languages.es]
title = ""
weight = 1
languageName = "Español"
landingPageURL = "/"
landingPageName = "<i class='fas fa-home'></i> Inicio"
# [[Languages.es.menu.shortcuts]]
# name = "<i class='fas fa-fw fa-camera'></i> Escaparate"
# url = "more/showcase/"
# weight = 11
[[Languages.es.menu.shortcuts]]
name = "<i class='fas fa-child'></i> Acerca de"
url = "more/about/"
weight = 20
[[Languages.es.menu.shortcuts]]
name = "<i class='fas fa-fw fa-bullhorn'></i> Novedades"
url = "more/news/"
weight = 15
[[Languages.es.menu.shortcuts]]
name = "<i class='fas fa-clock'></i> Historia"
# <i class="fa-solid fa-timeline"></i>
# <i class="fa-solid fa-clock-rotate-left"></i>
url = "more/history/"
weight = 30
[[Languages.es.menu.shortcuts]]
name = "<i class='fas fa-fw fa-tags'></i> Tags"
url = "tags/"
weight = 40