55 lines
1.2 KiB
TOML
55 lines
1.2 KiB
TOML
baseURL = "https://example.com/"
|
|
languageCode = "en-us"
|
|
title = "Codex Obscura"
|
|
theme = "codex-obscura"
|
|
paginate = 8
|
|
|
|
[params]
|
|
description = "A wanderer in the archive. Keeper of fragments, collector of marginalia."
|
|
author = "Archivist"
|
|
tagline = "remnants & reflections"
|
|
|
|
# Sidebar quote
|
|
sidebarQuote = "We are all just walking each other home."
|
|
sidebarQuoteAuthor = "Ram Dass"
|
|
|
|
# Social links
|
|
[params.social]
|
|
github = ""
|
|
mastodon = ""
|
|
email = ""
|
|
|
|
# Optional extra CSS files
|
|
# customCSS = ["css/custom.css"]
|
|
|
|
[menu]
|
|
[[menu.main]]
|
|
name = "home"
|
|
url = "/"
|
|
weight = 1
|
|
[[menu.main]]
|
|
name = "archive"
|
|
url = "/posts/"
|
|
weight = 2
|
|
[[menu.main]]
|
|
name = "tags"
|
|
url = "/tags/"
|
|
weight = 3
|
|
[[menu.main]]
|
|
name = "about"
|
|
url = "/about/"
|
|
weight = 4
|
|
|
|
[taxonomies]
|
|
tag = "tags"
|
|
category = "categories"
|
|
|
|
[markup]
|
|
[markup.highlight]
|
|
style = "monokai"
|
|
lineNos = false
|
|
noClasses = true
|
|
guessSyntax = true
|
|
[markup.goldmark.renderer]
|
|
unsafe = true # allow raw HTML in markdown
|