-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathhugo.toml
54 lines (45 loc) · 889 Bytes
/
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
baseURL = 'https://dfir.fi/'
languageCode = 'en-us'
title = 'DFIR Finland'
theme = "dfir-fi"
[outputs]
home = ["HTML", "RSS"]
section = ["HTML"]
page = ["HTML"]
taxonomy = ["HTML"]
term = ["HTML"]
[outputFormats]
[outputFormats.RSS]
name = "RSS"
mediaType = "application/rss+xml"
baseName = "rss"
isPlainText = true
rel = "alternate"
[params]
mainSections = ["blog"]
company_name = "Juho Jauhiainen"
company_link = "/about/whois"
[[menu.main]]
name = "Home"
pageRef = "/"
weight = 10
[[menu.main]]
name = "Contribute"
pageRef = "/contribute"
weight = 11
[[menu.main]]
name = "Blog"
pageRef = "/blog"
weight = 20
[[menu.main]]
name = "Training"
pageRef = "/training"
weight = 20
[[menu.main]]
name = "Community"
pageRef = "/community"
weight = 21
[[menu.main]]
name = "About"
pageRef = "/about"
weight = 40