forked from tendermint/tendermint
-
Notifications
You must be signed in to change notification settings - Fork 2
/
config.js
171 lines (171 loc) · 4.29 KB
/
config.js
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
module.exports = {
theme: 'cosmos',
title: 'Tendermint Core',
// locales: {
// "/": {
// lang: "en-US"
// },
// "/ru/": {
// lang: "ru"
// }
// },
base: process.env.VUEPRESS_BASE,
themeConfig: {
repo: 'tendermint/tendermint',
docsRepo: 'tendermint/tendermint',
docsDir: 'docs',
editLinks: true,
label: 'core',
algolia: {
id: "BH4D9OD16A",
key: "59f0e2deb984aa9cdf2b3a5fd24ac501",
index: "tendermint"
},
versions: [
{
"label": "v0.33",
"key": "v0.33"
},
{
"label": "v0.34",
"key": "v0.34"
},
{
"label": "v0.35",
"key": "v0.35"
}
],
topbar: {
banner: false,
},
sidebar: {
auto: true,
nav: [
{
title: 'Resources',
children: [
{
// TODO(creachadair): Figure out how to make this per-branch.
// See: https://github.com/tendermint/tendermint/issues/7908
title: 'RPC',
path: 'https://docs.tendermint.com/v0.35/rpc/',
static: true
},
]
}
]
},
gutter: {
title: 'Help & Support',
editLink: true,
forum: {
title: 'Tendermint Forum',
text: 'Join the Tendermint forum to learn more',
url: 'https://forum.cosmos.network/c/tendermint',
bg: '#0B7E0B',
logo: 'tendermint'
},
github: {
title: 'Found an Issue?',
text: 'Help us improve this page by suggesting edits on GitHub.'
}
},
footer: {
question: {
text: 'Chat with Tendermint developers in <a href=\'https://discord.gg/cosmosnetwork\' target=\'_blank\'>Discord</a> or reach out on the <a href=\'https://forum.cosmos.network/c/tendermint\' target=\'_blank\'>Tendermint Forum</a> to learn more.'
},
logo: '/logo-bw.svg',
textLink: {
text: 'tendermint.com',
url: 'https://tendermint.com'
},
services: [
{
service: 'medium',
url: 'https://medium.com/@tendermint'
},
{
service: 'twitter',
url: 'https://twitter.com/tendermint_team'
},
{
service: 'linkedin',
url: 'https://www.linkedin.com/company/tendermint/'
},
{
service: 'reddit',
url: 'https://reddit.com/r/cosmosnetwork'
},
{
service: 'telegram',
url: 'https://t.me/cosmosproject'
},
{
service: 'youtube',
url: 'https://www.youtube.com/c/CosmosProject'
}
],
smallprint:
'The development of Tendermint Core is led primarily by [Interchain GmbH](https://interchain.berlin/). Funding for this development comes primarily from the Interchain Foundation, a Swiss non-profit. The Tendermint trademark is owned by Tendermint Inc, the for-profit entity that also maintains this website.',
links: [
{
title: 'Documentation',
children: [
{
title: 'Cosmos SDK',
url: 'https://docs.cosmos.network'
},
{
title: 'Cosmos Hub',
url: 'https://hub.cosmos.network'
}
]
},
{
title: 'Community',
children: [
{
title: 'Tendermint blog',
url: 'https://medium.com/@tendermint'
},
{
title: 'Forum',
url: 'https://forum.cosmos.network/c/tendermint'
}
]
},
{
title: 'Contributing',
children: [
{
title: 'Contributing to the docs',
url: 'https://github.com/tendermint/tendermint'
},
{
title: 'Source code on GitHub',
url: 'https://github.com/tendermint/tendermint'
},
{
title: 'Careers at Tendermint',
url: 'https://tendermint.com/careers'
}
]
}
]
}
},
plugins: [
[
'@vuepress/google-analytics',
{
ga: 'UA-51029217-11'
}
],
[
'@vuepress/plugin-html-redirect',
{
countdown: 0
}
]
]
};