This repository has been archived by the owner on Dec 15, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 70
/
params.toml
131 lines (120 loc) · 4.28 KB
/
params.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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
# Knative DEFAULT Site Params
# Default site parameters, see "config/production" "config/staging" and "config/local" for environment specific overrides
########################
# Default site parameters
# RELEASE-ITEM: 'latest_github_branch' and 'version' get updated each release
# GitHub branch (latest release)
latest_github_branch = "release-0.23"
# Default version (latest release)
version = "v0.23"
########################
# Section labels for versions
# Current release
doclabel = "Documentation "
releaselabel = "Release: "
# Pre-release
prereleaselabel = "Pre-release"
# section path value ("development" docs directory folder on website)
prereleasefolder = "development"
# Footer content
knativeAuthors = "The Knative Authors"
commonsLicense = "CC By 4.0"
commons_license = "https://creativecommons.org/licenses/by/4.0/"
apacheLicense = "Apache 2.0"
apache_license = "https://www.apache.org/licenses/LICENSE-2.0"
knativeLicense = "Knative Licensing"
knative_license = "https://github.com/knative/docs/blob/main/LICENSE"
privacyPolicy = "Privacy Policy"
privacy_policy = "https://policies.google.com/privacy"
cookieUsage = "Cookie Usage"
cookie_usage = "/about-analytics-cookies/"
# GitHub repositories
github_docsrepo = "https://github.com/knative/docs"
github_communityrepo = "https://github.com/knative/community"
github_eventingrepo = "https://github.com/knative/eventing"
github_servingrepo = "https://github.com/knative/serving"
# Templates
docs_template = "https://github.com/knative/docs/blob/main/template-docs-page.md"
blog_template = "https://github.com/knative/docs/blob/main/template-blog-entry.md"
# User interface configuration
[ui]
# Set to true to display the nav bar in compact state (collapse menu).
sidebar_menu_compact = true
# Set to true to disable breadcrumb navigation.
breadcrumb_disable = false
[links]
# End user relevant links. These will show up on left side of footer and in the community page if you have one.
[[links.user]]
name = "Knative users Group"
url = "https://groups.google.com/forum/#!forum/knative-users"
external = "true"
icon = "fa fa-users"
desc = "Discussion and help from your fellow users"
[[links.user]]
name ="Twitter"
url = "https://twitter.com/KnativeProject"
external = "true"
icon = "fab fa-twitter"
desc = "Follow us on Twitter to get the latest news!"
[[links.user]]
name = "Stack Overflow questions"
url = "https://stackoverflow.com/questions/tagged/*knative*"
external = "true"
icon = "fab fa-stack-overflow"
desc = "Knative tagged questions and curated answers"
# Developer relevant links. These will show up on right side of footer and in the community page if you have one.
[[links.developer]]
name = "Knative GitHub repo"
url = "https://github.com/knative"
external = "true"
icon = "fab fa-github"
desc = "Development takes place here!"
[[links.developer]]
name = "Knative Slack channels"
url = "https://slack.knative.dev/"
external = "true"
icon = "fab fa-slack"
desc = "Chat with other project developers"
[[links.developer]]
name = "Knative developers Group"
url = "https://groups.google.com/forum/#!forum/knative-dev"
external = "true"
icon = "fa fa-users"
desc = "Discuss development issues around the project"
# Community page links.
[[links.usecode]]
name = "Community code samples"
url = "./samples/"
external = "false"
icon = "fa fa-code"
desc = "Community owned and maintained code samples"
[[links.usecode]]
name = "Eventing"
url = "../docs/eventing/samples/"
external = "false"
icon = "fa fa-code"
desc = "Code samples for the Eventing component"
[[links.usecode]]
name = "Serving"
url = "../docs/serving/samples/"
external = "false"
icon = "fa fa-code"
desc = "Code samples for the Serving component"
[[links.usecode]]
name = "All"
url = "../docs/samples/"
external = "false"
icon = "fa fa-list"
desc = "See a list of all code samples"
[[links.sharecode]]
name = "Contribute code samples"
url = "./samples/"
external = "false"
icon = "fa fa-share"
desc = "Share your samples with the community"
[[links.sharecode]]
name = "Link existing code samples"
url = "../docs/samples/#external-code-samples"
external = "false"
icon = "fa fa-link"
desc = "Link to your Knative samples that live on another site"