36 lines
647 B
TOML
36 lines
647 B
TOML
|
baseURL = "https://www.rustybever.be"
|
||
|
title = "The Rusty Bever"
|
||
|
theme = "etch"
|
||
|
languageCode = "en-US"
|
||
|
enableInlineShortcodes = true
|
||
|
pygmentsCodeFences = true
|
||
|
pygmentsUseClasses = true
|
||
|
|
||
|
[params]
|
||
|
description = "Description"
|
||
|
copyright = "Copyright © 2022 Jef Roosens"
|
||
|
dark = "auto"
|
||
|
highlight = true
|
||
|
|
||
|
[menu]
|
||
|
[[menu.main]]
|
||
|
identifier = "posts"
|
||
|
name = "posts"
|
||
|
title = "posts"
|
||
|
url = "/"
|
||
|
weight = 10
|
||
|
|
||
|
[[menu.main]]
|
||
|
identifier = "about"
|
||
|
name = "about"
|
||
|
title = "about"
|
||
|
url = "/about/"
|
||
|
weight = 20
|
||
|
|
||
|
[permalinks]
|
||
|
posts = "/:title/"
|
||
|
|
||
|
[markup.goldmark.renderer]
|
||
|
# Allows HTML in Markdown
|
||
|
unsafe = true
|