41 lines
719 B
TOML
41 lines
719 B
TOML
theme = 'm10c'
|
|
baseURL = 'https://log.x77.dev'
|
|
title = "Jonas' Ramblings"
|
|
staticDir = ['static']
|
|
|
|
|
|
[outputFormats.RSS]
|
|
mediatype = "application/rss"
|
|
baseName = "feed"
|
|
|
|
|
|
[params]
|
|
author = "Jonas Maier"
|
|
description = "A blog by a CS Student"
|
|
menu_item_separator = " - "
|
|
[[params.social]]
|
|
icon = "github"
|
|
name = "GitHub"
|
|
url = "https://github.com/JM4ier"
|
|
[[params.social]]
|
|
icon = "rss"
|
|
name = "RSS"
|
|
url = "/feed.xml"
|
|
|
|
|
|
[menu]
|
|
[[menu.main]]
|
|
identifier = "home"
|
|
name = "Home"
|
|
url = "/"
|
|
weight = 1
|
|
[[menu.main]]
|
|
identifier = "about"
|
|
name = "About"
|
|
url = "/about/"
|
|
weight = 4
|
|
|
|
[markup]
|
|
[markup.goldmark]
|
|
[markup.goldmark.renderer]
|
|
unsafe = true |