sidebarslists.js 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. module.exports = {
  2. lists: [
  3. {
  4. type:'doc',
  5. id: 'index',
  6. },
  7. {
  8. type: 'category',
  9. label: 'Art',
  10. collapsible: true,
  11. link: {
  12. type:'doc',
  13. id:'art/art',
  14. },
  15. items: [
  16. 'art/lit',
  17. 'art/motion',
  18. {
  19. type: 'category',
  20. label: 'Music',
  21. collapsible: true,
  22. link: {
  23. type:'doc',
  24. id:'art/music/music',
  25. },
  26. items: [
  27. {
  28. type:'doc',
  29. id: 'art/music/playlist',
  30. label:'Playlist',
  31. },
  32. {
  33. type:'doc',
  34. id: 'art/music/playlist_2020',
  35. label:'- 2020',
  36. },
  37. {
  38. type:'doc',
  39. id: 'art/music/playlist_2015',
  40. label:'2020-2015',
  41. },
  42. {
  43. type:'doc',
  44. id: 'art/music/playlist_2010',
  45. label:'2015-2010',
  46. },
  47. ],
  48. },
  49. {
  50. type:'doc',
  51. id: 'art/visual',
  52. label:'Visual',
  53. },
  54. ],
  55. },
  56. {
  57. type: 'doc',
  58. id: 'concepts',
  59. },
  60. {
  61. type: 'doc',
  62. id: 'feeds',
  63. },
  64. {
  65. type: 'doc',
  66. id: 'lists',
  67. },
  68. {
  69. type: 'category',
  70. label: 'Places',
  71. collapsible: true,
  72. link: {
  73. type:'doc',
  74. id:'places/places',
  75. },
  76. items: [
  77. {
  78. type:'doc',
  79. id: 'places/greenwood',
  80. label:'Greenwood',
  81. },
  82. {
  83. type:'doc',
  84. id: 'places/columbia',
  85. label:'Columbia',
  86. },
  87. {
  88. type:'doc',
  89. id: 'places/charleston',
  90. label:'Charleston',
  91. },
  92. ],
  93. },
  94. {
  95. type: 'doc',
  96. id: 'people',
  97. },
  98. {
  99. type: 'doc',
  100. id: 'things',
  101. },
  102. {
  103. type: 'doc',
  104. id: 'trivia',
  105. },
  106. {
  107. type: 'doc',
  108. id: 'tweets',
  109. },
  110. {
  111. type: 'doc',
  112. id: 'quotes',
  113. },
  114. {
  115. type: 'doc',
  116. id: 'words',
  117. },
  118. {
  119. type: 'doc',
  120. id: 'next',
  121. },
  122. ],
  123. };