1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- 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: 'feeds',
- },
- {
- 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',
- },
- ],
- };
|