brainbaking/config.toml

96 lines
2.4 KiB
TOML
Raw Normal View History

2017-02-26 13:28:18 +01:00
languageCode = "en-us"
title = "Brain Baking"
2018-04-10 11:39:40 +02:00
baseurl = "https://brainbaking.com/"
2020-05-27 20:35:46 +02:00
theme = "brainbaking-minimal"
2017-02-26 14:26:57 +01:00
publishDir = "docs"
2018-05-03 16:09:41 +02:00
enableEmoji = true
2018-07-25 09:47:59 +02:00
enableRobotsTXT = true
# for .Lastmod to work with .GitInfo: --enableGitInfo https://gohugo.io/variables/git/
enableGitInfo = true
2017-02-26 14:26:57 +01:00
2021-07-02 11:58:08 +02:00
[services.rss]
limit = 50
2017-02-26 13:28:18 +01:00
[taxonomies]
2018-04-27 15:17:15 +02:00
tag = "tags"
2020-11-19 10:50:03 +01:00
category = "categories"
[params]
pagination = 30
2022-01-04 21:15:26 +01:00
description = "Freshly Baked Thoughts"
copyright = "&uarr;&nbsp;<a href='#header'>Top</a> <svg class='icon icon-small' width='16' height='16'><title>lightbulb icon</title><use xlink:href='#bulb'></use></svg> <a href='/'>Brain Baking</a> | <a href='/archives'>Archives</a> | <a href='/copyright-and-tracking-policy'>&copy; CC BY 4.0 License</a>."
2017-02-26 13:28:18 +01:00
[Author]
name = "Wouter Groeneveld"
2021-01-05 15:30:06 +01:00
email = "wouter@brainbaking.com"
rssmail = "hifromrss@brainbaking.com"
2022-12-23 16:46:51 +01:00
mastodon = "@jefklak@dosgame.club"
mastodonlink = "https://dosgame.club/@jefklak"
2021-02-28 12:48:24 +01:00
githublink = "https://github.com/wgroeneveld"
2017-02-26 13:28:18 +01:00
[markup]
defaultMarkdownHandler = "goldmark"
[markup.goldmark.renderer]
unsafe= true
[markup.highlight]
codeFences = true
guessSyntax = false
hl_Lines = ""
lineNoStart = 1
lineNos = false
lineNumbersInTable = true
noClasses = true
style = "arduino"
tabWidth = 4
2022-01-20 21:21:49 +01:00
# added since Hugo 0.9x to allow babel to be executed
[security]
enableInlineShortcodes = false
[security.exec]
allow = ['^dart-sass-embedded$', '^go$', '^npx$', '^postcss$', 'babel']
2017-02-26 13:28:18 +01:00
[[menu.main]]
name = "Brain Baking"
pre = "<svg width='24' height='24'><use xlink:href='#book'></use></svg> "
2020-06-13 17:16:18 +02:00
url = "/"
2017-02-26 13:28:18 +01:00
weight = 1
[[menu.main]]
name = "Archives"
pre = "<svg width='24' height='24'><use xlink:href='#tag'></use></svg> "
url = "/archives"
weight = 2
2017-02-26 13:28:18 +01:00
[[menu.main]]
name = "Subscribe"
pre = "<svg width='24' height='24'><use xlink:href='#news'></use></svg> "
url = "/subscribe"
weight = 3
2022-10-11 17:11:51 +02:00
[[menu.mainright]]
name = "Works"
pre = "<svg width='24' height='24'><use xlink:href='#bulb'></use></svg> "
url = "/works"
weight = 4
[[menu.mainright]]
name = "About"
pre = "<svg width='24' height='24'><use xlink:href='#about'></use></svg> "
2017-02-26 13:28:18 +01:00
url = "/about"
2022-10-11 17:11:51 +02:00
weight = 5
2022-01-20 21:21:49 +01:00
[[menu.mainright]]
name = "Links"
pre = "<svg width='24' height='24'><use xlink:href='#link'></use></svg> "
url = "/links"
2022-10-11 17:11:51 +02:00
weight = 6
2017-02-26 13:28:18 +01:00
2021-04-03 09:39:40 +02:00
[outputs]
home = ["HTML", "RSS"]
page = ["HTML"]
2022-01-20 21:21:49 +01:00