-
Notifications
You must be signed in to change notification settings - Fork 8
/
config.toml
205 lines (167 loc) · 4.32 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
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
######################## default configuration ####################
baseURL = "https://dapr.io/"
title = "Dapr - Distributed Application Runtime"
theme = "bigspring"
languageName = "En"
languageCode = "en-us"
# post pagination
paginate = "3"
# post excerpt
summaryLength = "15"
# disqus short name
disqusShortname = "" # get your shortname form here : https://disqus.com
# unsafe html
[markup.goldmark.renderer]
unsafe = true
############################# Plugins ##############################
# CSS Plugins
[[params.plugins.css]]
link = "plugins/themify-icons/themify-icons.css"
[[params.plugins.css]]
link = "plugins/slick/slick.css"
# JS Plugins
[[params.plugins.js]]
link = "plugins/jQuery/jquery.min.js"
[[params.plugins.js]]
link = "plugins/slick/slick.min.js"
############################## navigation ###############################
# main menu
[[menu.main]]
name = "Docs"
URL = "https://docs.dapr.io/"
weight = 1
[[menu.main]]
name = "Learn"
identifier = "learn"
weight = 2
[[menu.main]]
name = "Concepts"
URL = "https://docs.dapr.io/concepts/"
parent = "learn"
weight = 1
[[menu.main]]
name = "Getting Started"
URL = "https://docs.dapr.io/getting-started/"
parent = "learn"
weight = 2
[[menu.main]]
name = "Quickstarts"
URL = "https://docs.dapr.io/getting-started/quickstarts/"
parent = "learn"
weight = 3
[[menu.main]]
name = "Community"
URL = "/community/"
weight = 3
[[menu.main]]
name = "Enterprise"
weight = 5
[[menu.main]]
name = "News & Media"
identifier = "News & Media"
weight = 4
[[menu.main]]
name = "Blog"
URL = "https://blog.dapr.io/posts"
parent = "News & Media"
weight = 1
[[menu.main]]
name = "Case studies"
URL = "/testimonials/"
parent = "News & Media"
weight = 1
[[menu.main]]
name = "Logos"
URL = "https://github.com/cncf/artwork/blob/master/examples/incubating.md#dapr-logos"
parent = "News & Media"
weight = 3
[[menu.main]]
name = "Enterprise"
URL = "/enterprise/"
weight = 5
[[menu.main]]
name = "中国社区"
URL = "https://cn.dapr.io"
weight = 6
# footer menu
[[menu.footer_column1]]
name = "Concepts"
URL = "https://docs.dapr.io/concepts/"
weight = 1
[[menu.footer_column1]]
name = "Getting Started"
URL = "https://docs.dapr.io/getting-started/"
weight = 2
[[menu.footer_column1]]
name = "Quickstarts"
URL = "https://docs.dapr.io/getting-started/quickstarts/"
weight = 3
[[menu.footer_column2]]
name = "GitHub"
URL = "https://github.com/dapr/community"
weight = 1
[[menu.footer_column2]]
name = "Discord"
URL = "https://bit.ly/dapr-discord"
weight = 2
[[menu.footer_column3]]
name = "Blog"
URL = "https://blog.dapr.io/posts"
weight = 1
[[menu.footer_column3]]
name = "Case studies"
URL = "/testimonials/"
weight = 2
[[menu.footer_column3]]
name = "Logos"
URL = "https://github.com/cncf/artwork/blob/master/examples/incubating.md#dapr-logos"
weight = 3
[[menu.footer_column4]]
name = "Terms"
URL = "https://www.linuxfoundation.org/legal/terms"
weight = 1
[[menu.footer_column4]]
name = "Privacy"
URL = "https://www.linuxfoundation.org/legal/privacy-policy"
weight = 2
[[menu.footer_column4]]
name = "Trademarks"
URL = "https://www.linuxfoundation.org/legal/trademark-usage"
weight = 3
# menu media
[[menu.media]]
name = "twitter"
URL = "https://twitter.com/daprdev"
weight = 1
[[menu.media]]
name = "github"
URL = "https://github.com/dapr"
weight = 2
[[menu.media]]
name = "youtube"
URL = "https://www.youtube.com/@daprdev"
weight = 3
#################### default parameters ################################
[params]
logo = "images/dapr.svg"
logo_width = "60px"
# Meta data
description = "APIs for building secure and reliable microservices"
keywords = "dapr, microservices, distributed applications, runtime, kubernetes"
author = "Dapr Maintainers"
# contact form action
contact_form_action = "#" # contact form works with https://formspree.io
########### footer content ##########
footer_menu_column1 = "Learn"
footer_menu_column2 = "Community"
footer_menu_column3 = "News & Media"
footer_menu_column4 = "Legal"
# Preloader
[params.preloader]
enable = false
preloader = "" # use jpg, png, svg or gif format.
# Navigation buttons
[params.navigation_button]
enable = false
label = "Get started"
link = "https://docs.dapr.io/getting-started/"