-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathconfig.toml
363 lines (291 loc) · 9.47 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
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
baseurl = "/"
title = "openLooKeng"
theme = "universal"
enableRobotsTXT = true
languageCode = "en-us"
# Site language. Available translations in the theme's `/i18n` directory.
defaultContentLanguage = "en-us"
uglyURLs = true
buildFuture = true
# Define the number of posts per page
paginate = 10
[languages]
[languages.en-us]
languageCode = "en-us"
contentDir = "content/en-us"
[languages.zh-cn]
languageCode = "zh-cn"
contentDir = "content/zh-cn"
[[menu.main]]
identifier="download"
name = "Download"
url = "/download.html"
weight = 1
[[menu.main]]
identifier="documentation"
name = "Documentation"
url = "/docs/docs/overview.html"
weight = 2
[[menu.main]]
identifier = "community"
name = "Community"
weight = 3
hasChildren = true
[[menu.main]]
identifier = "contribution"
name = "Contribution"
url = "/contribution.html"
weight = 1
parent = 'community'
[[menu.main]]
identifier = "who-we-are"
name = "Who we are"
url = "/who-we-are.html"
weight = 2
parent = 'community'
[[menu.main]]
identifier = "communication"
name = "Communication"
url = "/communication.html"
weight = 3
parent = 'community'
[[menu.main]]
identifier = "security"
name = "Security"
url = "/security.html"
weight = 4
parent = 'community'
[[menu.main]]
identifier = "evangelist"
name = "Evangelist"
url = "/evangelist.html"
weight = 5
parent = 'community'
[[menu.main]]
identifier = "datastat"
name = "Statistics"
url = "https://datastat.openlookeng.io/en/overview"
weight = 6
parent = 'community'
[[menu.main]]
identifier = "newsroom"
name = "Newsroom"
weight = 4
hasChildren = true
[[menu.main]]
identifier = "sourcecode"
name = "Source Code"
weight = 4
hasChildren = true
[[menu.main]]
identifier = "gitee"
name = "Gitee"
url = "https://gitee.com/openlookeng"
weight = 1
parent = 'sourcecode'
[[menu.main]]
identifier = "github"
name = "GitHub"
url = "https://github.com/openlookeng"
weight = 2
parent = 'sourcecode'
[[menu.main]]
identifier = "events"
name = "Events"
url = "/events.html"
weight = 2
parent = 'newsroom'
[[menu.main]]
identifier = "news"
name = "News"
url = "/news.html"
weight = 1
parent = 'newsroom'
[[menu.main]]
identifier = "blog"
name = "Blog"
url = "/blog.html"
weight = 3
parent = 'newsroom'
[[menu.main]]
identifier = "video"
name = "Video"
url = "/video.html"
weight = 4
parent = 'newsroom'
[[menu.main]]
identifier = "lang"
name = "中"
url = "/zh-cn"
weight = 5
# Chinese Menu
[[languages.zh-cn.menu.main]]
identifier="download"
name = "下载"
url = "/zh-cn/download.html"
weight = 1
[[languages.zh-cn.menu.main]]
identifier="documentation"
name = "文档"
url = "/zh-cn/docs/docs/overview.html"
weight = 2
[[languages.zh-cn.menu.main]]
identifier = "community"
name = "社区"
weight = 3
hasChildren = true
[[languages.zh-cn.menu.main]]
identifier = "contribution"
name = "贡献"
url = "/zh-cn/contribution.html"
weight = 1
parent = 'community'
[[languages.zh-cn.menu.main]]
identifier = "who-we-are"
name = "团队"
url = "/zh-cn/who-we-are.html"
weight = 2
parent = 'community'
[[languages.zh-cn.menu.main]]
identifier = "communication"
name = "交流"
url = "/zh-cn/communication.html"
weight = 3
parent = 'community'
[[languages.zh-cn.menu.main]]
identifier = "security"
name = "安全"
url = "/zh-cn/security.html"
weight = 4
parent = 'community'
[[languages.zh-cn.menu.main]]
identifier = "evangelist"
name = "布道"
url = "/zh-cn/evangelist.html"
weight = 5
parent = 'community'
[[languages.zh-cn.menu.main]]
identifier = "datastat"
name = "贡献看板"
url = "https://datastat.openlookeng.io/zh/overview"
weight = 6
parent = 'community'
[[languages.zh-cn.menu.main]]
identifier = "newsroom"
name = "信息"
weight = 4
hasChildren = true
[[languages.zh-cn.menu.main]]
identifier = "sourcecode"
name = "源码"
weight = 4
hasChildren = true
[[languages.zh-cn.menu.main]]
identifier = "gitee"
name = "Gitee"
url = "https://gitee.com/openlookeng"
weight = 1
parent = 'sourcecode'
[[languages.zh-cn.menu.main]]
identifier = "gitHub"
name = "GitHub"
url = "https://github.com/openlookeng"
weight = 2
parent = 'sourcecode'
[[languages.zh-cn.menu.main]]
identifier = "events"
name = "活动"
url = "/zh-cn/events.html"
weight = 2
parent = 'newsroom'
[[languages.zh-cn.menu.main]]
identifier = "news"
name = "新闻"
url = "/zh-cn/news.html"
weight = 1
parent = 'newsroom'
[[languages.zh-cn.menu.main]]
identifier = "blog"
name = "博客"
url = "/zh-cn/blog.html"
weight = 3
parent = 'newsroom'
[[languages.zh-cn.menu.main]]
identifier = "video"
name = "视频"
url = "/zh-cn/video.html"
weight = 4
parent = 'newsroom'
[[languages.zh-cn.menu.main]]
identifier = "lang"
name = "EN"
url = "/en-us"
weight = 5
[params]
viewMorePostLink = "/blog/"
author = "DevCows"
defaultKeywords = ["data engine", "big data", "distributed","reliable","low latency"]
mainSections = ["blog"]
defaultDescription = "openLooKeng is a distributed, low latency, reliable data engine for all data, big or Small, local or remote, which makes big data simplified."
email = "[email protected]"
footerlogo = "../img/banners/openLookengLogo.png"
# Style options: default (light-blue), blue, green, marsala, pink, red, turquoise, violet
style = "default"
about_us = "<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas.</p>"
provide = " "
license = " "
# Format dates with Go's time formatting
date_format = "January 2, 2006"
logo = "img/logo.svg"
logo_small = "img/logo-small.png"
BookMenuBundle = "/menu"
[Permalinks]
blog = "/blog/:year/:month/:day/:filename/"
# Enable and disable widgets for the right sidebar
[params.widgets]
categories = true
tags = true
search = true
[params.recent_posts]
enable = true
title = "From our blog"
subtitle = "Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo."
#blog_single评论模块新增
# Valine.
# You can get your appid and appkey from https://leancloud.cn
# more info please open https://valine.js.org
[params.valine]
enable = true
appId = 'KcTcd38EvA1I33vSIV6qWNea-gzGzoHsz'
appKey = 'oJBVUOcItn0essSFvY6tS77O'
notify = false # mail notifier , https://github.com/xCss/Valine/wiki
verify = false # Verification code
avatar = 'mm'
placeholder = 'Please leave a message...'
visitor = true
[params.blog]
enable = true
[params.news]
enable = true
[params.emails]
enable = true
[params.slacklink]
enable = true
text = "<a href=\"https://join.slack.com/t/openlookeng/shared_invite/zt-fsqw94eo-Svj_yjr9K~SAmCvEmYF4Rw\" target=\"_blank\">Sign up</a> for Slack or <a href=\"https://openlookeng.slack.com\" target=\"_blank\">Sign in</a> if you already have an account Channels."
[languages.zh-cn.params.slacklink]
enable = true
text = "<a href=\"https://join.slack.com/t/openlookeng/shared_invite/zt-fsqw94eo-Svj_yjr9K~SAmCvEmYF4Rw\" target=\"_blank\">请注册</a>openLooKeng Slack。如果已经注册,请直接<a href=\"https://openlookeng.slack.com\" target=\"_blank\">登录</a>频道。"
[params.copyright]
enable = true
text = "<a href=\"/brand.html\" target='_blank'>Brand</a><a href=\"/privacypolicy.html\" target='_blank'>Privacy</a><a href=\"/legalnotice.html\" target='_blank'>Legal</a><a href=\"https://status.openlookeng.io\" target='_blank'>Service Status</a><br>Licensed under the <a href=\"http://www.apache.org/licenses/LICENSE-2.0\" target='_blank'>Apache License Version 2.0</a><br>Copyright © 2022 openLooKeng. All rights reserved"
[languages.zh-cn.params.copyright]
enable = true
text = "<a href=\"/zh-cn/brand.html\" target='_blank'>品牌</a><a href=\"/zh-cn/privacypolicy.html\" target='_blank'>隐私政策</a><a href=\"/zh-cn/legalnotice.html\" target='_blank'>法律声明</a><a href=\"https://status.openlookeng.io\" target='_blank'>服务状态</a><br>遵循<a class='pull-apache' href=\"http://www.apache.org/licenses/LICENSE-2.0\" target='_blank'>Apache License Version 2.0</a>协议<br>版权所有 © 2022 openLooKeng 保留一切权利"
[markup.goldmark.renderer]
unsafe= true
[params.scancode]
enable = true
text = "<span>Scan for</span><span>Wechat</span><span>Subscription</span>"
[languages.zh-cn.params.scancode]
enable = true
text = "<span>扫码</span><span>关注</span><span>微信公众号</span>"