Files
hugo/homepage/hugo.toml
2026-05-25 22:53:28 +02:00

51 lines
1.2 KiB
TOML

baseURL = 'http://example.org/'
locale = 'en-us'
title = 'Thomas Internet Garden'
theme = "shibui"
[params.author]
name = "Thomas"
email = "Thomas.Sindt@gmx.de"
[markup]
defaultMarkdownHandler = "goldmark"
# By default, Goldmark trims unsafe outputs which might prevent some shortcodes from rendering.
# It is recommended to set markup.goldmark.renderer.unsafe=true if you encounter problems.
[markup.goldmark]
[markup.goldmark.renderer]
unsafe = true # Enable user to embed HTML snippets in Markdown content.
[markup.highlight]
codeFences = true
guessSyntax = true
lineNos = false
noClasses = true
tabWidth = 4
style = "algol_nu"
[markup.tableOfContents]
startLevel = 2
endLevel = 4
ordered = true
[menu]
[[menu.main]]
name = "Gedanken"
url = "/gedanken/"
weight = 1
[[menu.main]]
name = "Warum"
url = "/warum/"
weight = 2
[build]
writeStats = true
[frontmatter]
date = ['date', 'publishDate', 'lastmod']
expiryDate = ['expiryDate']
lastmod = [':git', 'lastmod', 'date', 'publishDate']
publishDate = ['publishDate', 'date']
[caches]
[caches.images]
dir = ':cacheDir/images'