sidebarslists.js 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  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/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_2015',
  37. label:'2020-2015',
  38. },
  39. {
  40. type:'doc',
  41. id: 'music/playlist_2010',
  42. label:'2015-2010',
  43. },
  44. ],
  45. },
  46. ],
  47. },
  48. {
  49. type: 'doc',
  50. id: 'concepts',
  51. },
  52. {
  53. type: 'doc',
  54. id: 'feeds',
  55. },
  56. {
  57. type: 'doc',
  58. id: 'next',
  59. },
  60. {
  61. type: 'doc',
  62. id: 'lists',
  63. },
  64. {
  65. type: 'doc',
  66. id: 'places',
  67. },
  68. {
  69. type: 'doc',
  70. id: 'people',
  71. },
  72. {
  73. type: 'doc',
  74. id: 'things',
  75. },
  76. {
  77. type: 'doc',
  78. id: 'trivia',
  79. },
  80. {
  81. type: 'doc',
  82. id: 'quotes',
  83. },
  84. {
  85. type: 'doc',
  86. id: 'words',
  87. },
  88. ],
  89. };