docs: added docs of the syntax of config template

This commit is contained in:
0xJacky 2023-05-21 13:22:22 +08:00
parent b1b6e8fec8
commit d3184ff8d0
No known key found for this signature in database
GPG key ID: B6E4A6E4A561BAF0
16 changed files with 566 additions and 253 deletions

View file

@ -26,6 +26,7 @@ export const enConfig: LocaleSpecificConfig<DefaultTheme.Config> = {
items: [
{text: 'Build', link: '/guide/build'},
{text: 'Project Structure', link: '/guide/project-structure'},
{text: 'Config Template', link: '/guide/nginx-ui-template'},
{text: 'Contributing', link: '/guide/contributing'}
]
},

View file

@ -31,6 +31,7 @@ export const zhCNConfig: LocaleSpecificConfig<DefaultTheme.Config> = {
items: [
{text: '构建', link: '/zh_CN/guide/build'},
{text: '项目结构', link: '/zh_CN/guide/project-structure'},
{text: '配置模板', link: '/zh_CN/guide/nginx-ui-template'},
{text: '贡献代码', link: '/zh_CN/guide/contributing'}
]
},

View file

@ -121,3 +121,16 @@
.VPNavBar {
white-space: nowrap;
}
img {
margin: 0 auto;
}
.vp-doc table {
display: table;
margin: 10px auto;
}
.VPImage .logo {
margin-left: 0;
}