-
-
Notifications
You must be signed in to change notification settings - Fork 88
Expand file tree
/
Copy pathcontents.js
More file actions
49 lines (48 loc) · 1.47 KB
/
Copy pathcontents.js
File metadata and controls
49 lines (48 loc) · 1.47 KB
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
const Contents = [
{
title: 'Overview',
pages: [
{ title: 'Introduction', route: '/docs' },
{ title: 'Getting started', route: '/docs/getting-started' },
{ title: 'Markup syntax', route: '/docs/syntax' },
{ title: 'HTML tags', route: '/docs/html-tags'},
{ title: 'Options and styles', route: '/docs/configuration-and-styles' },
{ title: 'Plugin system', route: '/docs/plugin-system' },
{ title: 'Multipage template', route: '/docs/multipage' }
]
},
{
title: 'Interactivity',
pages: [
{ title: 'Built-in components', route: '/docs/components' },
{ title: 'Using components from npm', route: '/docs/components/npm' },
{ title: 'Make your own component', route: '/docs/components/custom' },
{
title: 'Scrolling and Refs',
route: '/docs/components/scrolling-and-refs'
}
]
},
{
title: 'Publishing',
pages: [
{
title: 'Deploying to the web',
route: '/docs/publishing/deploying-to-the-web'
},
{ title: 'Embedding Idyll', route: '/docs/publishing/embedding' }
]
},
{
title: 'Useful Links',
pages: [
{ title: 'Github', route: 'https://github.com/idyll-lang/idyll' },
{ title: 'Chat', route: 'https://gitter.im/idyll-lang/Lobby' },
{ title: 'Twitter', route: 'https://twitter.com/idyll_lang' },
{ title: 'Support Us', route: 'https://opencollective.com/idyll' }
]
}
];
module.exports = {
Contents
};