-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathhugo.toml
More file actions
209 lines (176 loc) · 5.04 KB
/
hugo.toml
File metadata and controls
209 lines (176 loc) · 5.04 KB
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
baseURL = 'https://tinkerbell.org/'
languageCode = 'en-us'
title = 'Tinkerbell'
theme = "hugo-geekdoc"
pluralizeListTitles = false
# Geekdoc required configuration
pygmentsUseClasses = true
pygmentsCodeFences = true
disablePathToLower = true
# Custom output format for Netlify _redirects file
[mediaTypes."text/netlify"]
suffixes = [""]
[outputFormats.redir]
baseName = "_redirects"
isPlainText = true
mediaType = "text/netlify"
notAlternative = true
# Needed for mermaid shortcodes
[markup]
[markup.goldmark.renderer]
# Needed for mermaid shortcode or when nesting shortcodes (e.g. img within columns or tabs)
unsafe = true
hardWraps = false
xhtml = false
[markup.tableOfContents]
startLevel = 2
endLevel = 2
[markup.highlight]
anchorLineNos = false
codeFences = true
guessSyntax = false
hl_Lines = ''
hl_inline = false
lineAnchors = ''
lineNoStart = 1
lineNos = false
lineNumbersInTable = true
noClasses = true
noHl = false
style = 'tango'
tabWidth = 4
[taxonomies]
tag = "tags"
[outputs]
home = ["HTML", "RSS", "redir"]
[params]
geekdocSearch = true
author.name = "Tinkerbell Community"
description = "Tinkerbell is an open-source bare metal provisioning engine, built for a cloud native world and maintained by the Tinkerbell community."
github = "https://github.com/tinkerbell"
email = "cncf-tinkerbell-dev@lists.cncf.io"
image = "images/social/tinkerbell-social-image.png" # relative to static
sitename = "Tinkerbell.org"
ogtitle = "Flexible automation for bare metal"
ogdescription = "Designed for scalable provisioning of physical hardware, Tinkerbell is both open-source and cloud native. Contributed to the CNCF by Equinix Metal."
geekdocBreadcrumb = true
geekdocDarkModeToggle = true
geekdocDarkModeCode = true
geekdocDarkModeDim = true
geekdocLogo = "Tinkerbell-Logo-Landscape-Light.png"
geekdocOverwriteHTMLBase = false
geekdocMenuBundle = true
geekdocBackToTop = false
geekdocRepo = "https://github.com/tinkerbell/tinkerbell.org"
geekdocEditPath = "edit/main/"
tinkerbellRepo = "https://github.com/tinkerbell/tinkerbell/"
# Docs versioning configuration
# This is the single source of truth for the current/latest docs version.
# v0.22 is the oldest version, new versions will be added above as they're released
latestVersion = "v0.22"
# Version dropdown entries - TOML doesn't support variable interpolation,
# so each version must be explicitly listed here for the dropdown menu.
# - version: Used for docs URL paths (e.g., /docs/v0.22/)
# - releaseVersion: Full semver for external references (Helm charts, doc.crds.dev)
[[params.versions]]
version = "v0.22"
url = "/docs/v0.22/"
releaseVersion = "v0.22.1"
# Future versions will be added here, e.g.:
# [[params.versions]]
# version = "v0.23"
# url = "/docs/v0.23/"
# releaseVersion = "v0.23.0"
[[menu.shortcuts]]
name = "<i class='fab fa-fw fa-slack'></i> <em>Slack</em>"
url = "https://cloud-native.slack.com/archives/C01SRB41GMT"
weight = 10
[[menu.shortcuts]]
name = '<i class="fa-regular fa-github"></i> GitHub'
identifier = "ds"
url = "https://github.com/tinkerbell/"
weight = 20
[[menu.shortcuts]]
name = "<i class='fas fa-fw fa-file-contract '></i> License"
url = "/terms/license"
weight = 40
[[menu.homepage]]
identifier = "docs"
name = "Docs"
url = "/docs/"
weight = 1
# [[menu.homepage]]
# identifier = "faq"
# name = "FAQ"
# url = "/faq/"
# weight = 10
[[menu.homepage]]
identifier = "community"
name = "Community"
url = "/docs/reference/community/"
weight = 10
[[menu.homepage]]
identifier = "blog"
name = "Blog"
url = "/blog/"
weight = 15
[[menu.homepage]]
pre = '<i class="fab fa-fw fa-github"></i>'
name = "GitHub"
url = "https://github.com/tinkerbell/"
weight = 20
[[menu.homepage]]
pre = "<i class='fab fa-fw fa-slack'></i>"
name = "Slack"
url = "https://cloud-native.slack.com/archives/C01SRB41GMT"
weight = 30
[[menu.homepage]]
pre = "<i class='fab fa-fw fa-youtube'></i>"
name = "Youtube"
url = "https://www.youtube.com/channel/UCTzWInTQPvzH21KHS8jrq7A"
weight = 20
[[menu.tink]]
name = "Tink"
url = "https://github.com/tinkerbell/tinkerbell"
title = "Workflow Server, Worker, and Controller"
weight = 10
[[menu.tink]]
name = "Smee"
url = "https://github.com/tinkerbell/tinkerbell"
title = "DHCP & iPXE Server"
weight = 20
[[menu.tink]]
name = "Tootles"
url = "https://github.com/tinkerbell/tinkerbell"
title = "Metadata Service"
weight = 30
[[menu.tink]]
name = "Rufio"
url = "https://github.com/tinkerbell/tinkerbell"
title = "BMC Interactions"
weight = 40
[[menu.tink]]
name = "Hook"
url = "https://github.com/tinkerbell/hook"
title = "Operating System Installation Environment (OSIE)"
weight = 50
# [[menu.footer]]
# name = "Terms"
# url = "/terms"
# title = "Terms"
# weight = 10
# [[menu.footer]]
# name = "License"
# url = "/terms/license"
# title = "License"
# weight = 30
# [[menu.footer]]
# name = "Code of Conduct"
# url = "/terms/code-of-conduct"
# title = "Code of Conduct"
# weight = 40
# [[menu.footer]]
# name = "Contributor Guide"
# url = "/terms/contributor-guide"
# title = "Contributor Guide"
# weight = 50