docusaurus/website/sidebars.js
Wei Gao f4f458460c docs(v2) themes (#1645)
* More prep

* rename xxx-api to api-xxx

* move content around for plugins and themes

* wip docs: using themes

* docs(v2): tweak using plugins

* docs(v2): list official themes in docs

* docs(v2): advanced themes

* wip notes for lifecycle apis

* resolve PR review discussions

* lower case "theme"

* better intro for using themes

* add a simple README to @docusaurus/theme-classic

* remove list of components from theme classic README and replace with link to directory
2019-07-26 12:00:40 +07:00

45 lines
958 B
JavaScript

/*
* Copyright (c) 2017-present, Facebook, Inc.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
module.exports = {
docs: {
Docusaurus: [
'introduction',
/*'motivation', */ 'design-principles',
'contributing',
],
'Getting Started': ['installation', 'configuration'],
Guides: [
'creating-pages',
'styling-layout',
'static-assets',
{
type: 'category',
label: 'Docs',
items: ['markdown-features', 'sidebar'],
},
'blog',
'analytics',
'seo',
'search',
'using-plugins',
'using-themes',
'deployment',
],
'Advanced Guides': [
'advanced-plugins',
'advanced-themes',
'advanced-presets',
],
'API Reference': [
'cli',
'docusaurus-core',
'docusaurus.config.js',
'lifecycle-apis',
],
},
};