-
Notifications
You must be signed in to change notification settings - Fork 1
/
config.toml
66 lines (53 loc) · 1.31 KB
/
config.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
baseURL = 'https://kitchenowl.org/'
languageCode = 'en-us'
title = 'KitchenOwl'
enableInlineShortcodes = true
disableKinds = ['taxonomy', 'term']
[params]
author = 'Tom Bursch'
description = "KitchenOwl is a smart grocery list and recipe manager. Easily add items to your shopping list before you go shopping or create recipes and get cooking suggestions."
theme_color = "#20ac64"
[params.plausible]
enable = true
domain = "kitchenowl.org"
selfhosted_domain = "stats.kitchenowl.org"
outbound_link = true
[module]
[[module.imports]]
path = "github.com/gohugoio/hugo-mod-bootstrap-scss/v5"
[[module.imports]]
path = "github.com/divinerites/plausible-hugo"
[markup.goldmark.renderer]
unsafe = true
[menu]
main = [
{ name = 'docs', url = 'https://docs.kitchenowl.org/' }
]
[privacy]
[privacy.disqus]
disable = true
[privacy.googleAnalytics]
disable = true
[privacy.instagram]
disable = true
[privacy.twitter]
disable = true
[privacy.vimeo]
disable = true
[privacy.youtube]
disable = true
[languages]
[languages.en]
languageName = 'English'
weight = 1
[languages.de]
languageName = 'Deutsch'
weight = 2
[[module.mounts]]
source = 'content'
target = 'content'
lang = 'en'
[[module.mounts]]
source = 'content'
target = 'content'
lang = 'de'