forked from JupiterBroadcasting/jupiterbroadcasting.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.coder-radio.toml
103 lines (90 loc) · 2.21 KB
/
config.coder-radio.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
baseURL = 'https://coderradio.jupiterbroadcasting.net/'
languageCode = 'en-us'
title = 'Coder Radio'
# 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 = ['sub','jb']
# directory where the output is generated to
publishdir = 'public_subsites/coderradio'
# Allow HTML in Markdown
[markup]
[markup.goldmark]
[markup.goldmark.renderer]
unsafe = true
[taxonomies]
tag = "tags"
category = "categories"
host = "hosts"
guest = "guests"
# Footer logo and menu title config
# footer menus are further down
[params.footer.logo]
image = "/images/shows/coder-radio.png"
text = "Coder Radio"
url = "/"
[params.footer.left]
headline = "Get Social"
[params.footer.center]
headline = "Center"
[params.footer.right]
headline = "Right"
# Main Menu
[[Menu.Main]]
name = "Coder Radio"
identifier = "home"
url = "/"
weight =-100
[[Menu.Main]]
name = "Episodes"
identifier = "episodes"
url = "/episodes"
weight =-90
# Footer Menu (center)
[[Menu.FooterCenter]]
name = "center"
identifier = "home"
url = "/"
weight =-100
# Footer Menu (right)
[[Menu.FooterRight]]
name = "right"
identifier = "home"
url = "/"
weight =-100
contentDir = "sites/coder-radio/content"
# Module mounts
[module]
#[[module.mounts]]
# source = 'sites/coder-radio/content'
# target = 'content'
# currently it prevents us from mounting sites/coder-radio/content directly
# https://github.com/gohugoio/hugo/issues/7123
[[module.mounts]]
source = 'content/show/coder-radio'
target = 'content/episodes'
[[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'
[outputFormats]
[outputFormats.webplayer]
mediatype ="application/json"
baseName = "webplayer"
[outputs]
page = ["json","html","webplayer"]
section = ["html"]