feat: docs app

This commit is contained in:
Sergey Andrievskiy 2019-07-16 08:38:11 +03:00
parent 62e6828680
commit 165e64eaca
203 changed files with 15928 additions and 6 deletions

80
docs/structure.ts Normal file
View file

@ -0,0 +1,80 @@
export const structure = [
{
type: 'section',
name: 'Getting Started',
children: [
{
type: 'page',
name: 'What is ngx-admin?',
children: [
{
type: 'block',
block: 'markdown',
source: 'index.md',
},
],
},
{
type: 'page',
name: 'Installation Guidelines',
children: [
{
type: 'block',
block: 'markdown',
source: 'install-starter-kit.md',
},
],
},
{
type: 'page',
name: 'Server deployment',
children: [
{
type: 'block',
block: 'markdown',
source: 'server-deployment.md',
},
],
},
],
},
{
type: 'section',
name: 'Guides',
children: [
{
type: 'page',
name: 'Theme System',
children: [
{
type: 'block',
block: 'markdown',
source: 'concept-theme-system.md',
},
],
},
{
type: 'page',
name: 'Change Theme',
children: [
{
type: 'block',
block: 'markdown',
source: 'theme-change.md',
},
],
},
{
type: 'page',
name: 'Backend integration',
children: [
{
type: 'block',
block: 'markdown',
source: 'backend-integration.md',
},
],
},
],
},
];