-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhugo.toml
65 lines (54 loc) · 1.19 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
61
62
63
64
65
# the site's base url
baseURL = 'https://www.davelongwebstudio.com/'
# the site's language code
languageCode = 'en-us'
# the site's title
title = 'Dave Long Web Studio'
# custom parameters
[params]
# the site's main description
description = 'Building Web Sites: Development, Design, and Writing for the Web.'
# menu items
[menu]
[[menu.main]]
identifier = "about"
name = "About"
url = "/about"
weight = 10
[[menu.main]]
identifier = "services"
name = "Services"
url = "/services"
weight = 20
[[menu.main]]
identifier = "blog"
name = "Blog"
url = "/blog"
weight = 30
[[menu.main]]
identifier = "contact"
name = "Contact"
url = "/contact"
weight = 40
# allow markup to include html elements
[markup.goldmark.renderer]
unsafe = true
[caches]
[caches.assets]
dir = ':resourceDir/_gen'
maxAge = 0
[caches.getcsv]
dir = ':cacheDir/:project'
maxAge = 0
[caches.getjson]
dir = ':cacheDir/:project'
maxAge = 0
[caches.getresource]
dir = ':cacheDir/:project'
maxAge = 0
[caches.images]
dir = ':resourceDir/_gen'
maxAge = 0
[caches.modules]
dir = ':cacheDir/modules'
maxAge = 0