-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhugo.toml
60 lines (52 loc) · 1.15 KB
/
hugo.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
baseURL = 'https://rrty.co.uk/'
languageCode = 'en-us'
title = "Shiney's RRtY"
paginate = 12
[params]
homeText = "Martyn Shiner's RRtY site built with Hugo from Google Sheets data."
[module]
[[module.mounts]]
source = 'content'
target = 'content'
[[module.mounts]]
source = 'prebuild/public/ride'
target = 'content/rides'
[[module.mounts]]
source = 'prebuild/public/stats'
target = 'content/stats'
[menu]
[[menu.main]]
name = "Home"
url = "/"
weight = 1
[[menu.main]]
name = "All Rides"
url = "/rides/"
weight = 2
[[menu.main]]
name = "Stats"
url = "/stats/"
weight = 3
[[menu.main]]
name = "Series"
url = "/series/"
weight = 4
[[menu.main]]
name = "Bikes"
url = "/bike/"
weight = 5
[[menu.main]]
name = "Event Types"
url = "/event_type/"
weight = 6
[[menu.main]]
name = "Contact"
url = "/contact/"
weight = 7
# By default, a blog post permalink will be /blog/:filename: - this changes this to be just the filename
[permalinks]
rides = "/:filename/"
[taxonomies]
series = "series"
event_type = "event_type"
bike = "bike"