sidebarslists.js 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. module.exports = {
  2. lists: [
  3. {
  4. type:'doc',
  5. id: 'index',
  6. },
  7. {
  8. type: 'category',
  9. label: 'Art',
  10. collapsible: false,
  11. items: [
  12. 'art',
  13. 'film',
  14. 'lit',
  15. {
  16. type: 'category',
  17. label: 'Music',
  18. collapsible: false,
  19. link: {
  20. type:'doc',
  21. id:'music',
  22. },
  23. items: [
  24. {
  25. type:'doc',
  26. id: 'music_playlist',
  27. label:'Playlist',
  28. },
  29. {
  30. type:'doc',
  31. id: 'music_playlist_2020',
  32. label:'> 2020',
  33. },
  34. {
  35. type:'doc',
  36. id: 'music_playlist_2010',
  37. label:'< 2020',
  38. },
  39. ],
  40. },
  41. ],
  42. },
  43. {
  44. type: 'doc',
  45. id: 'concepts',
  46. },
  47. {
  48. type: 'doc',
  49. id: 'next',
  50. },
  51. {
  52. type: 'doc',
  53. id: 'lists',
  54. },
  55. {
  56. type: 'doc',
  57. id: 'places',
  58. },
  59. {
  60. type: 'doc',
  61. id: 'people',
  62. },
  63. {
  64. type: 'doc',
  65. id: 'things',
  66. },
  67. {
  68. type: 'doc',
  69. id: 'trivia',
  70. },
  71. {
  72. type: 'doc',
  73. id: 'quotes',
  74. },
  75. {
  76. type: 'doc',
  77. id: 'words',
  78. },
  79. ],
  80. };