-
Notifications
You must be signed in to change notification settings - Fork 0
/
hugo.toml
103 lines (82 loc) · 1.95 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
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://freenet.org/"
languageCode = 'en-us'
title = 'Freenet'
theme = "freenet"
# Enable RSS feed generation
[outputs]
home = ["HTML", "RSS"]
section = ["HTML", "RSS"]
# Configure RSS feed
[outputFormats.RSS]
mediaType = "application/rss+xml"
baseName = "feed"
[services.rss]
limit = 20 # Number of items in the feed
[menu]
[[menu.main]]
name = "Home"
url = "/"
weight = 1
[[menu.main]]
name = "Developers"
url = "/dev/"
weight = 3
[[menu.main]]
name = "Platform"
url = "/dev/platform/"
weight = 4
parent = "Developers"
[[menu.main]]
name = "Apps"
url = "/dev/apps/"
weight = 5
parent = "Developers"
[[menu.main]]
name = "Resources"
url = "/resources/"
weight = 6
[[menu.main]]
name = "News"
url = "/news/"
weight = 7
parent = "Resources"
[[menu.main]]
name = "Video Talks"
url = "/resources/video-talks/"
weight = 8
parent = "Resources"
[[menu.main]]
name = "FAQ"
url = "/faq/"
weight = 9
parent = "Resources"
[[menu.main]]
name = "Contribute"
weight = 10
[[menu.main]]
name = "Donate"
url = "/donate/"
weight = 11
parent = "Contribute"
[[menu.main]]
name = "Get Ghost Key"
weight = 12
url= "/ghostkey/"
parent = "Contribute"
[params]
stripePublishableKeyTest = "pk_test_51PUf6RCCPv9UL23G0yLdnS51VCStEcnqzd2AftFWiXAOjFOgonYRRBL6F5eKOCrr2yuEHCBDqqYa8H0w7ouRyW6d00awdNMKsf"
stripePublishableKeyLive = "pk_live_51PUf6RCCPv9UL23Gw8QzBFY3LxQMWmw2qp9k2MOyJQpaAPF5jpomsZ5K81JDvG8BW05PSqm2LjjGqfaepzHNWk8y007raWcjJX"
[frontmatter]
date = ["date", "publishDate", "lastmod"]
lastmod = [":git", "lastmod", "date", "publishDate"]
publishDate = ["publishDate", "date"]
expiryDate = ["expiryDate"]
[taxonomies]
category = "categories"
tag = "tags"
[permalinks]
posts = "/:year/:month/:title/"
[markup]
[markup.goldmark]
[markup.goldmark.renderer]
unsafe = true