no message

Former-commit-id: 6c28c42abcf435cdc0550834a99edc9ccdca2543 [formerly 8743fb230f18828cfd3aed9c9b338058561fee31] [formerly 6c28c42abcf435cdc0550834a99edc9ccdca2543 [formerly 8743fb230f18828cfd3aed9c9b338058561fee31] [formerly 6c28c42abcf435cdc0550834a99edc9ccdca2543 [formerly 8743fb230f18828cfd3aed9c9b338058561fee31] [formerly 8743fb230f18828cfd3aed9c9b338058561fee31 [formerly a19e0dfac3bc9a04d0e0bfee649fd8cb8d51cb51 [formerly b53d16ce962434c005efb5c5fa433dbe24222eca]]]]]
Former-commit-id: 452734ab14afe086ea3c8ae7524a1d3008ffafe7
Former-commit-id: ccb0a90afeeccac311f67df6a4f2395922f2fd2f
Former-commit-id: 4943cce7804b69b2087a292c3990de02d92f69ea [formerly 74bf3a5e7484ac631b0723da86c035620c25c4bd]
Former-commit-id: 94633a239d8053ccc81366142cb1bf697744f076
Former-commit-id: 96519d30358bf831ed324de75e24936e100a918e
Former-commit-id: e0469eb3be7b98b69e6be9bc2e77045b5662559d
Former-commit-id: 4aa01b88a1ff68cc5ebed5c41623801399354049
Former-commit-id: bbc47bb1df4df8e28211827d7baaaa5a68ce9263
This commit is contained in:
liyang
2018-08-19 13:22:36 +08:00
parent eae8b9291e
commit a15942eace
8 changed files with 738 additions and 7 deletions

View File

@@ -75,18 +75,23 @@ module.exports = {
{
text: '其它',
items: [
{ text: '文章归档', link: '' },
{ text: '更新日志', link: '' },
{ text: '参与者名单', link: '' },
{ text: '文章归档', link: '/zh/article/' },
{ text: '更新日志', link: '/zh/change-log/' },
{ text: '参与者名单', link: '/zh/collaborator/' },
{
text: '交流',
items: [
{ text: '微信公众号', link: '' },
{ text: '交流群', link: '' }
]
},
{
text: '关注我们',
items: [
{ text: '掘金', link: '' },
{ text: 'CSDN', link: '' },
{ text: 'segmentfault', link: '' },
{ text: '知乎', link: '' },
{ text: '微信公众号', link: '' },
{ text: '交流群', link: '' }
{ text: '知乎', link: '' }
]
}
]
@@ -96,7 +101,8 @@ module.exports = {
sidebar: {
'/zh/learn-guide/': sideBarLearnGuide(),
'/zh/sys-components/': sideBarSysComponents(),
'/zh/sys-plugins/': sideBarSysPlugins()
'/zh/sys-plugins/': sideBarSysPlugins(),
'/zh/article/': sideBarArticle('版本发布')
}
}
}
@@ -145,4 +151,19 @@ function sideBarSysPlugins () {
]
}
]
}
function sideBarArticle (titleUpdate) {
return [
{
title: titleUpdate,
collapsable: false,
children: [
'update/ice-1.1.2',
'update/1.1.5',
'update/1.1.4',
'update/0.0.0'
]
}
]
}