feat(demo): add landing page with docs (#1951)

This commit is contained in:
Dmitry Nehaychik 2018-12-26 15:17:57 +03:00 committed by Sergey Andrievskiy
parent 67c9587b87
commit 43cc3a1556
190 changed files with 15425 additions and 21 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',
},
],
},
],
},
];