docs/sidebars.js

75 řádky
1.8 KiB
JavaScript
Surový Normální zobrazení Historie

2022-10-05 00:57:12 +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.
*/
// @ts-check
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
const sidebars = {
// By default, Docusaurus generates a sidebar from the docs folder structure
2022-10-05 17:08:22 +02:00
//tutorialSidebar: [{type: 'autogenerated', dirName: '.'}],
2022-10-05 00:57:12 +02:00
// But you can create a sidebar manually
2022-10-05 17:08:22 +02:00
doc: [
'README',
2022-12-06 09:26:20 +01:00
'co-delame',
2022-10-05 17:08:22 +02:00
'klicove-pojmy',
2022-10-05 00:57:12 +02:00
{
type: 'category',
2022-10-05 17:08:22 +02:00
label: 'Komunikační kanály',
link: { type: 'doc', id: 'komunikacni-kanaly/README' },
items: [
'komunikacni-kanaly/forum',
'komunikacni-kanaly/matrix',
'komunikacni-kanaly/mastodon',
//'komunikacni-kanaly/blog',
'komunikacni-kanaly/twitter',
2022-12-19 08:46:32 +01:00
'komunikacni-kanaly/commonground',
2022-10-14 14:13:56 +02:00
'komunikacni-kanaly/discord',
2022-10-05 17:08:22 +02:00
],
},
'nastroje',
2022-12-06 09:26:20 +01:00
'pokladna',
2022-10-05 17:08:22 +02:00
{
type: 'category',
label: 'Council',
link: { type: 'doc', id: 'council/README' },
items: [
'council/clenove',
2022-12-06 09:26:20 +01:00
],
},
2022-12-09 14:22:22 +01:00
'working-group',
2022-12-06 09:26:20 +01:00
{
type: 'category',
label: 'Governance Call',
link: { type: 'doc', id: 'governance-call/README' },
items: [
'governance-call/seznam-setkani',
2022-10-05 17:08:22 +02:00
],
},
'historie',
'media-kit',
'partneri',
{
type: 'category',
label: 'Podpořte nás',
link: { type: 'doc', id: 'podporte-nas/README' },
items: [
'podporte-nas/aktivni-ucast',
'podporte-nas/financni-podpora',
'podporte-nas/gitcoin-grants',
],
2022-10-05 00:57:12 +02:00
},
],
};
module.exports = sidebars;