forked from radius-project/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.toml
112 lines (96 loc) · 2.57 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
baseURL = "https://docs.radapp.io/"
languageCode = "en-us"
title = "Radius Docs"
theme = "docsy"
disableFastRender = true
# Ignore sample code
ignoreFiles = ["/code/*"]
# Google Analytics
[services.googleAnalytics]
id = "G-9JR8B6TPF9"
enableGitInfo = true
# Mounts
[module]
[[module.mounts]]
source = "content"
target = "content"
[[module.mounts]]
source = "shared-content"
target = "content"
[[module.mounts]]
source = "static"
target = "static"
[[module.mounts]]
source = "layouts"
target = "layouts"
[[module.mounts]]
source = "data"
target = "data"
[[module.mounts]]
source = "assets"
target = "assets"
[[module.mounts]]
source = "archetypes"
target = "archetypes"
# Taxonomies
[taxonomies]
category = "categories"
tag = "tags"
# Top Nav Bar
[[menu.main]]
name = "Home"
weight = 10
url = "https://radapp.io"
pre = "<i class='fas fa-home'></i>"
[[menu.main]]
name = "Blog"
weight = 20
url = "https://blog.radapp.io"
pre = "<i class='fas fa-blog'></i>"
[[menu.main]]
name = "GitHub"
weight = 40
url = "https://github.com/radius-project"
pre = "<i class='fab fa-github'></i>"
[[menu.main]]
name = "Discord"
weight = 90
url = "https://aka.ms/Radius/Discord"
pre = "<i class='fab fa-discord'></i>"
[params]
copyright = "Radius"
version = "v0.27"
tag_version = "latest"
chart_version = "0.27.0"
# Algolia Search
algolia_docsearch = true
# GitHub Information
github_repo = "https://github.com/radius-project/docs"
github_subdir = "docs"
github_branch = "v0.27"
github_project_repo = "https://github.com/radius-project/radius"
# Versioning
version_menu = "Releases"
[[params.versions]]
version = "edge (preview)"
url = "https://edge.docs.radapp.io"
[[params.versions]]
version = "latest"
url = "https://docs.radapp.io"
# Markdown Engine - Allow inline html
[markup]
[markup.goldmark]
[markup.goldmark.renderer]
unsafe = true
# UI Customization
[params.ui]
sidebar_menu_compact = true
sidebar_search_disable = true
sidebar_menu_foldable = true
sidebar_menu_truncate = 500
ul_show = 1
navbar_logo = true
[params.ui.feedback]
enable = true
yes = '<b>Glad to hear it!</b> Please feel free to <a href="https://github.com/radius-project/radius">star our repo</a> and join our <a href="https://aka.ms/radius/discord">Discord server</a> to stay up to date with the project.'
no = '<b>Sorry to hear that.</b> If you would like to also contribute a suggestion visit <a href="https://github.com/radius-project/docs/issues/new/choose"> and tell us how we can improve</a>.'