dashy/sidebars.js

44 lines
1.0 KiB
JavaScript
Raw Normal View History

2021-06-27 14:47:20 +02:00
/**
* Creating a sidebar enables you to:
- create an ordered group of docs
- render a sidebar for each doc of that group
- provide next/previous navigation
The sidebars can be generated from the filesystem, or explicitly defined here.
Create as many sidebars as you want.
*/
module.exports = {
2021-08-29 19:42:57 +02:00
// tutorialSidebar: [{type: 'autogenerated', dirName: '.'}],
2021-06-27 14:47:20 +02:00
2021-08-29 19:42:57 +02:00
dashySidebar: [
2021-06-27 14:47:20 +02:00
{
type: 'category',
2021-08-29 19:42:57 +02:00
label: 'Running Dashy',
items: ['quick-start', 'deployment', 'configuring', 'management', 'troubleshooting'],
},
{
type: 'category',
label: 'Community',
items: ['showcase', 'contributing', 'developing', 'development-guides'],
},
{
type: 'category',
label: 'Feature Docs',
items: [
'icons', 'theming', 'status-indicators',
'authentication', 'searching', 'alternate-views',
'multi-language-support', 'backup-restore',
],
},
{
type: 'category',
label: 'Misc',
items: ['privacy', 'changelog', 'license', 'code-of-conduct'],
2021-06-27 14:47:20 +02:00
},
],
2021-08-29 19:42:57 +02:00
2021-06-27 14:47:20 +02:00
};
2021-08-29 19:42:57 +02:00