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.coderradio.toml
78 lines (69 loc) · 1.72 KB
/
config.coderradio.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
baseURL = 'https://jb-cr.codefighters.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"
# Main Menu
[[Menu.Main]]
name = "Coder Radio"
identifier = "home"
url = "/"
weight =-100
[[Menu.Main]]
name = "Episodes"
identifier = "episodes"
url = "/episodes"
weight =-90
contentDir = "sites/coderradio/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/coderradio/content/community'
target = 'content/community'
[[module.mounts]]
source = 'content/show/coderradio'
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"]