-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.toml
240 lines (182 loc) · 6.92 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
baseURL = 'https://hackbo.org'
languageCode = 'en'
title = 'Hackbo'
theme = "color-your-world"
author = "@Hackbo"
copyright = "© 2023 Hackbo"
pagination.pagerSize = 10
DefaultContentLanguage = "es"
enableEmoji = true
enableInlineShortcodes = true
# prevent build failures when using Hugo's Instagram shortcode due to deprecated Instagram API.
# See https://github.com/gohugoio/hugo/issues/7228#issuecomment-714490456
ignoreErrors = ["error-remote-getjson"]
# Automatically add content sections to main menu
sectionPagesMenu = "main"
# TEST
# Netlify _headers
[outputs]
home = [ "HTML", "RSS", "HEADERS", "REDIRECTS" ]
section = [ "HTML", "RSS" ]
[mediaTypes."text/netlify"]
suffixes = [ "" ]
delimiter = ""
[outputFormats.HEADERS]
mediaType = "text/netlify"
baseName = "_headers"
isPlainText = true
notAlternative = true
# Necessary for i18n sites, so the correct 404 page can be rendered
[outputFormats.REDIRECTS]
mediaType = "text/netlify"
baseName = "_redirects"
isPlainText = true
notAlternative = true
[markup.highlight]
# To make use of the custom Chroma, this should be false
# The default is true
noClasses = false
[params]
# The default is false
hasNoscriptNotice = true
# Default path for images in posts
# ie.: "content/some-post/img"
# Can also be set PER PAGE
# It can be used to reduce repetition
# There's no default value
imgPath = "img"
# Default classes for markup image
# Modifies the default behavior of images placed via markdown
# Can also be set PER PAGE via front matter
# Available classes are: border and borderless
# There's no default value
markupImgClass = ""
# This will append a separator (of your choice) along the site title to your <title>
# ie.: | ❚ - – — • ⚫
# You can disabled it PER PAGE by using "disableTitleSeparator" at front
# matter or disable it entirely by commenting the line below
titleSeparator = "|"
# Contact form shortcode
[params.contact]
# formspree.io Form ID
formspreeFormId = "xjvdzygl"
# Autocomplete [on/off] and min character length for message
autoComplete = false # Default is false
messageMinLength = 100 # Default is 140
# Subject
# You can set a single value below (and it will cease to be a dropdown),
# BUT KEEP IT AS AN ARRAY
# It can also be disabled entirely (and it will turn into a text field)
subject = [ 'Un saludo', "Deseo hacer un evento", "Donde puedo donar?" ]
# Text placeholders. As usual, comment the lines if you don't want use them
# The "subject" below will only be used if the "subject" above doesn't exist (ie.: commented/deleted)
[params.contact.placeholder]
name = ""
email = ""
subject = 'Un saludo'
message = ""
[params.search]
# Enable search form (at the post list)
# The default value is false
enable = true
# Limit search results
# The default value is 30
maxResults = 15
# Limit seach field input and pattern matching
minLength = 2 # Default is 3
maxLength = 42 # Default is 32
# Optional placeholder for search field
placeholder = "ie.: lorem ipsum"
[params.style]
# Dark mode as default
# User preferences (site/system settings) will still have priority over it
# The default is false
isDark = true
# Disable the use of system settings (prefers-color-scheme)
# The default is false
ignoreSystemSettings = false
# Accent colors for dark and light mode respectively
darkAccent = "#1dbc91" # Default is "#1dbc91"
lightAccent = "#1f676b" # Default is "#1f676b"
# More colors, pick as many as you want (not really sure if there's a limit)
# Apparently these may not show up on every modern browser (ie. Firefox)
# There's no default value. Used here just as example
presets = [ "#225670", "#dd587c", "#902b37", "#f3a530", "#754e85", "#7fc121", "#a8314a", "#ff7433", "#3e6728", "#c063bd", "#805080", "#9d629d", "#a064a0", "#7daa50", "#284531", "#285790", "#F5A83D", "#88aa33", "#015660", "#bf274e", "#bf4242", "#51b37c" ]
# Use an icon or text for footnote return links
# The default is false
hasIconAsFootnoteReturnLink = true
# For the social shortcode
# Use flexbox (with flex-grow) or grid (equal width)
# The default is false
socialIsFlex = false
# Keep anchor links hidden until it's focused/hovered
# The default is false
hideAnchors = true
# To make use of the custom Chroma, this should be true
# and "noClasses" (at markup.highlight) should be false
# The default is true
useCustomChroma = true
# CSS animation transition when changing colors
# The default is ".5s ease"
changeTransition = ".3s ease"
# For a simple 404
[params.notFound]
title = "Page not found"
description = "This page was not found."
paragraph = "Nothing to see here, buddy."
[params.social.centralized]
twitter = [ "@HackBo", "@hackbo" ]
gitlab = [ "hackbo", "HackBo" ]
github = [ "hackbo", "HackBo" ]
instagram = [ "hackbo.co", "@hackbo.co"]
#entry = [ "username", "label (optional)" ]
# The "entry" here IS important. It's used to load the data.
[params.social.decentralized]
#[params.social.decentralized.element]
#1 = [ "https://app.element.io/#/user/<username>:matrix.org", "matrix.org" ]
#entry = [ "full url", "label (required)" ]
[params.social.decentralized.mastodon]
1 = [ "https://col.social/@hackbo", "@Hackbo@col.social"]
#1 = [ "https://mastodon.social/<username>", "mastodon.social" ]
#2 = [ "https://mastodon.too/<username>", "mastodon.too" ]
# The "entry" here ISN'T important. It's used for nothing.
[languages]
[languages.es]
languageName = "Spanish"
[languages.es.menu]
[[languages.es.menu.main]]
name = "Acerda de"
weight = 1
url = "/"
[[languages.es.menu.main]]
name = "Código de conducta"
weight = 2
url = "coc/"
# [[languages.es.menu.main]]
# name = "Hackerismos Indisciplinados"
# weight = 3
# url = "indisciplinados/"
#
[[languages.es.menu.main]]
name = "Contacto"
weight = 4
url = "contact/"
[languages.en]
languageName = "English"
[languages.en.menu]
[[languages.en.menu.main]]
name = "About"
weight = 1
url = "/"
[[languages.en.menu.main]]
name = "Contact"
weight = 2
url = "contact/"
[languages.en.params.contact]
formspreeFormId = "xjvdzygl"
subject = [ 'Just saying "hi"', "I'm want make a event", "How to can I donate?" ]
[languages.en.params.contact.placeholder]
name = ""
email = ""
subject = 'Just saying "hi"'
message = ""