28 lines
656 B
TOML
28 lines
656 B
TOML
|
|
baseURL = 'https://example.org/'
|
||
|
|
languageCode = 'en-us'
|
||
|
|
title = 'NERDER.LAND'
|
||
|
|
buildFuture = true
|
||
|
|
|
||
|
|
# Ignore README.md from being processed as content
|
||
|
|
ignoreFiles = ["README.md"]
|
||
|
|
|
||
|
|
[params]
|
||
|
|
description = "Welcome to the underground tech scene. Here you'll find the latest nerdy events in our community."
|
||
|
|
eventSubmissionEmail = "events@nerder.land"
|
||
|
|
|
||
|
|
# RSS configuration for events
|
||
|
|
[outputs]
|
||
|
|
home = ["HTML", "RSS"]
|
||
|
|
section = ["HTML", "RSS", "Calendar"]
|
||
|
|
page = ["HTML", "Calendar"]
|
||
|
|
|
||
|
|
[outputFormats]
|
||
|
|
[outputFormats.RSS]
|
||
|
|
mediatype = "application/rss"
|
||
|
|
baseName = "feed"
|
||
|
|
|
||
|
|
[outputFormats.Calendar]
|
||
|
|
mediatype = "text/calendar"
|
||
|
|
baseName = "calendar"
|
||
|
|
isPlainText = true
|