-
Notifications
You must be signed in to change notification settings - Fork 12
/
config.toml
96 lines (78 loc) · 1.98 KB
/
config.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
baseURL = "https://nrelabs.io/"
languageCode = "en-us"
theme = "nre-hugo-theme"
# Embedded directly into theme at layouts/_default/baseof.html
# googleAnalytics = ""
title = "NRE Labs"
MetaDataFormat = "yaml"
DefaultContentLanguage = "en"
SectionPagesMenu = "main"
Paginate = 6 # this is set low for demonstrating with dummy content. Set to a higher number
enableRobotsTXT = true
[sitemap]
changefreq = "weekly"
priority = 0.5
filename = "sitemap.xml"
[permalinks]
post = "/:year/:month/:title/"
[params]
author = "The NRE Team"
githubUsername = "nre-learning"
accent = "red"
showBorder = true
backgroundColor = "white"
font = "Roboto"
highlight = true
highlightStyle = "solarized-dark"
highlightLanguages = ["go", "python", "haskell", "kotlin", "scala", "swift"]
favicon = ""
description = "Learn automation by DOING it - all in the browser, for free."
background_color_class = "bg-black"
# To enable embedded html in markdown (useful for images, etc)
[markup.goldmark.renderer]
unsafe= true
[outputs]
home = ["HTML", "AMP", "RSS"]
page = ["HTML"]
[[menu.social]]
name = "Forums"
url = "https://discuss.nrelabs.io/"
weight = 1
[[menu.social]]
name = "Twitter"
url = "https://twitter.com/nrelabs"
weight = 2
[[menu.social]]
name = "GitHub"
url = "https://github.com/nre-learning"
weight = 3
[[menu.social]]
name = "YouTube"
url = "https://www.youtube.com/channel/UCbfZq3sDGx6gmv7KRrhRh4g"
weight = 4
[[menu.main]]
identifier = "about"
url = "/about/"
name = "About"
weight = 5
[[menu.main]]
identifier = "community"
url = "/community/"
name = "Community"
weight = 10
[[menu.main]]
identifier = "resources"
url = "/resources/"
name = "Resources"
weight = 15
[[menu.main]]
identifier = "post"
url = "/post/"
name = "Blogs"
weight = 20
[outputFormats]
[outputFormats.HTML]
mediaType = "text/html"
[outputFormats.RSS]
mediatype = "application/rss"
baseName = "feed"