-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathconfig.toml
97 lines (77 loc) · 2.01 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
97
baseURL = "https://kernelci.org/"
theme = "docsy"
# -- languages --
defaultContentLanguage = "en"
defaultContentLanguageInSubdir = false
contentDir = "content/en"
enableMissingTranslationPlaceholders = true # Useful when translating.
[languages]
[languages.en]
languageName ="English"
title = "KernelCI"
description = "The upstream Linux kernel test project"
# Sample additional language
#[languages.fr]
#languageName ="Français"
#title = "KernelCI"
#description = "Le projet upstream de test du noyau Linux"
# -- global site parameters --
pygmentsCodeFences = true
pygmentsUseClasses = false
pygmentsUseClassic = false
pygmentsStyle = "tango"
[markup]
[markup.goldmark]
[markup.goldmark.renderer]
unsafe = true
[markup.highlight]
style = "tango"
[params]
copyright = "KernelCI"
github_repo = "https://github.com/kernelci/kernelci-project"
github_branch = "main"
github_subdir = "kernelci.org"
[params.mermaid]
enable = true
# -- docsy parameters --
[params.ui]
sidebar_menu_compact = false
breadcrumb_disable = false
sidebar_search_disable = false
navbar_logo = true
footer_about_disable = false
[params.links]
[[params.links.user]]
name ="Twitter"
url = "https://twitter.com/kernelci"
icon = "fab fa-twitter"
desc = "Follow us on Twitter to get the latest news"
[[params.links.developer]]
name = "GitHub"
url = "https://github.com/kernelci"
icon = "fab fa-github"
desc = "Development takes place here!"
[[params.links.developer]]
name = "Discord"
url = "https://discord.gg/KWbrbWEyqb"
icon = "fab fa-discord"
desc = "Chat with other developers!"
# -- custom main menu --
[menu]
[[menu.main]]
identifier = "foundation"
name = "Home"
url = "https://kernelci.org"
weight = 1
[[menu.main]]
identifier = "documentation"
name = "Documentation"
url = "/"
[[menu.main]]
identifier = "dashboard"
name = "Dashboard"
url = "https://dashboard.kernelci.org/"
[[menu.main]]
identifier = "blog"
name = "Blog"
url = "https://kernelci.org/blog/"