This repository has been archived by the owner on Jul 5, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
config.jblive.toml
69 lines (62 loc) · 1.52 KB
/
config.jblive.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
67
68
69
baseURL = 'https://jb-live.codefighters.net/'
languageCode = 'en-us'
title = 'Jupiter Broadcast LIVE'
# Theme Components, takes two themes and merge them
# https://gohugo.io/hugo-modules/theme-components/
# discussion: https://discourse.gohugo.io/t/sub-themes-or-theme-families/3938
theme = ['jblive','jb']
# directory where the output is generated to
publishdir = 'public_subsites/jblive'
# Allow HTML in Markdown
[markup]
[markup.goldmark]
[markup.goldmark.renderer]
unsafe = true
[taxonomies]
tag = "tags"
category = "categories"
host = "hosts"
guest = "guests"
# Main Menu
[[Menu.Main]]
name = "LIVE!"
identifier = "home"
url = "/"
weight =-100
[[Menu.Main]]
name = "Calendar"
identifier = "calendar"
url = "/calendar"
weight =-90
contentDir = "sites/jblive/content"
# Module mounts
[module]
#[[module.mounts]]
# source = 'sites/coderradio/content'
# target = 'content'
# currently it prevents us from mounting sites/coderradio/content directly
# https://github.com/gohugoio/hugo/issues/7123
[[module.mounts]]
source = 'sites/jblive/content'
target = 'content'
[[module.mounts]]
source = 'content/calendar'
target = 'content/calendar'
[[module.mounts]]
source = 'static'
target = 'static'
[[module.mounts]]
source = 'layouts'
target = 'layouts'
[[module.mounts]]
source = 'data'
target = 'data'
[[module.mounts]]
source = 'assets'
target = 'assets'
[[module.mounts]]
source = 'i18n'
target = 'i18n'
[[module.mounts]]
source = 'archetypes'
target = 'archetypes'