12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- module.exports = {
- lists: [
- {
- type:'doc',
- id: 'index',
- },
- {
- type: 'category',
- label: 'Art',
- collapsible: false,
- items: [
- 'art',
- 'film',
- 'lit',
- {
- type: 'category',
- label: 'Music',
- collapsible: false,
- link: {
- type:'doc',
- id:'music/music',
- },
- items: [
- {
- type:'doc',
- id: 'music/playlist',
- label:'Playlist',
- },
- {
- type:'doc',
- id: 'music/playlist_2020',
- label:'- 2020',
- },
- {
- type:'doc',
- id: 'music/playlist_2015',
- label:'2020-2015',
- },
- {
- type:'doc',
- id: 'music/playlist_2010',
- label:'2015-2010',
- },
- ],
- },
- ],
- },
- {
- type: 'doc',
- id: 'concepts',
- },
- {
- type: 'doc',
- id: 'next',
- },
- {
- type: 'doc',
- id: 'lists',
- },
- {
- type: 'doc',
- id: 'places',
- },
- {
- type: 'doc',
- id: 'people',
- },
- {
- type: 'doc',
- id: 'things',
- },
- {
- type: 'doc',
- id: 'trivia',
- },
- {
- type: 'doc',
- id: 'quotes',
- },
- {
- type: 'doc',
- id: 'words',
- },
- ],
- };
|