6
0
Fork 0
This repository has been archived on 2024-10-15. You can view files and clone it, but cannot push or open issues or pull requests.
fediversity_website_archive/config.toml

107 lines
2.2 KiB
TOML
Raw Normal View History

baseURL = 'https://www3.nluug.nl/'
languageCode = 'nl'
title = 'NLUUG'
theme = 'nluug'
languagecode = "nl"
defaultcontentlanguage = "nl"
[permalinks]
pages = "/:slug"
[params]
2023-05-06 00:08:17 +02:00
logo = '/assets/favicon.ico'
description = "A minimal hugo theme focus on content"
author = 'NLUUG'
[menu]
[[menu.main]]
identifier = "organisatie"
name = "Organisatie"
url = "/organisatie/"
2023-05-09 20:10:48 +02:00
weight = 10
[[menu.main]]
identifier = "evenementen"
name = "Evenementen"
url = "/evenementen/"
weight = 20
2023-05-09 20:10:48 +02:00
[[menu.main]]
identifier = "lidmaatschap"
name = "Lidmaatschap"
url = "/lidmaatschap/"
weight = 30
[[menu.main]]
identifier = "nieuws"
name = "Nieuws"
url = "/nieuws/"
2023-05-09 20:10:48 +02:00
weight = 40
[[menu.main]]
identifier = "contact"
name = "Contact"
url = "/contact/"
2023-05-09 20:10:48 +02:00
weight = 50
[markup]
[markup.goldmark.renderer]
unsafe = true
[markup.highlight]
anchorLineNos = false
codeFences = true
guessSyntax = false
hl_Lines = ''
hl_inline = false
lineAnchors = ''
lineNoStart = 1
lineNos = false
lineNumbersInTable = true
noClasses = true
noHl = false
style = 'monokailight'
tabWidth = 4
[taxonomies]
tag = "tags"
[outputs]
home = ["HTML", "RSS", "JSON"]
section = ["HTML"]
#page = ["HTML", "CalendarEvent", "XMLEvent"]
page = ["HTML", "CalendarEvent"]
[outputFormats.RSS]
mediatype = "application/rss"
baseName = "atom"
[outputFormats.JSON]
mediatype = "application/json"
baseName = "feed"
[outputFormats.CalendarEvent]
mediaType = "text/calendar"
baseName = "calendar"
#[outputFormats.XMLEvent]
# mediaType = "application/xml"
# baseName = "schedule"
#ignoreErrors = ["error-remote-getjson"]
[security]
enableInlineShortcodes = false
[security.exec]
allow = ['^dart-sass-embedded$', '^go$', '^npx$', '^postcss$', '^rst2html$']
osEnv = ['(?i)^((HTTPS?|NO)_PROXY|PATH(EXT)?|APPDATA|TE?MP|TERM|GO\w+|GIT_EXEC_PATH|LD_LIBRARY_PATH|npm_config_(cache|init_module|userconfig)|pandoc_datadir|PYTHONHOME|RUBYLIB|SNAP)$']
[security.funcs]
getenv = ['^HUGO_', '^CI$']
[security.http]
methods = ['(?i)GET|POST']
urls = ['.*']
# EOF