|
|
@@ -13,50 +13,12 @@ export default [
|
|
13
|
13
|
{ path: '/', component: indexPage },
|
|
14
|
14
|
// List Pages
|
|
15
|
15
|
{
|
|
16
|
|
- path: '/episode',
|
|
17
|
|
- component: listPage,
|
|
18
|
|
- props: { ...gridSansSidebar, sortBy: null },
|
|
19
|
|
- },
|
|
20
|
|
- {
|
|
21
|
|
- path: '/artist',
|
|
22
|
|
- component: listPage,
|
|
23
|
|
- props: { ...gridWithSidebar, sortBy: `${sortTypes.alpha}` },
|
|
24
|
|
- },
|
|
25
|
|
- // Sorted List Pages
|
|
26
|
|
- {
|
|
27
|
|
- path: `/artist/${sortTypes.alpha}`,
|
|
28
|
|
- component: listPage,
|
|
29
|
|
- props: { ...gridWithSidebar, sortBy: `${sortTypes.alpha}` },
|
|
30
|
|
- },
|
|
31
|
|
- {
|
|
32
|
|
- path: `/artist/${sortTypes.material}`,
|
|
33
|
|
- component: listPage,
|
|
34
|
|
- props: { ...gridWithSidebar, sortBy: `${sortTypes.material}` },
|
|
35
|
|
- },
|
|
36
|
|
- {
|
|
37
|
|
- path: `/event`,
|
|
38
|
|
- component: listPage,
|
|
39
|
|
- props: { ...sansGridWithSidebar, sortBy: `${sortTypes.currentAndUpcoming}`, isWide: true },
|
|
40
|
|
- },
|
|
41
|
|
- {
|
|
42
|
|
- path: `/event/${sortTypes.currentAndUpcoming}`,
|
|
43
|
|
- component: listPage,
|
|
44
|
|
- props: { ...sansGridWithSidebar, sortBy: `${sortTypes.currentAndUpcoming}`, isWide: true },
|
|
45
|
|
- },
|
|
46
|
|
- {
|
|
47
|
|
- path: `/exhibition`,
|
|
48
|
|
- component: listPage,
|
|
49
|
|
- props: { ...sansGridWithSidebar, sortBy: `${sortTypes.currentAndUpcoming}`, isWide: true },
|
|
50
|
|
- },
|
|
51
|
|
- {
|
|
52
|
|
- path: `/exhibition/${sortTypes.currentAndUpcoming}`,
|
|
53
|
|
- component: listPage,
|
|
54
|
|
- props: { ...sansGridWithSidebar, sortBy: `${sortTypes.currentAndUpcoming}`, isWide: true },
|
|
|
16
|
+ path: '/:type',
|
|
|
17
|
+ component: listPage
|
|
55
|
18
|
},
|
|
56
|
19
|
{
|
|
57
|
|
- path: '/:type',
|
|
58
|
|
- component: listPage,
|
|
59
|
|
- props: { ...sansGridWithSidebar, sortBy: null },
|
|
|
20
|
+ path: '/:type/sorted/:sortBy',
|
|
|
21
|
+ component: listPage
|
|
60
|
22
|
},
|
|
61
|
23
|
// Single Pages
|
|
62
|
24
|
{
|