|
|
@@ -3,19 +3,20 @@ aside.sidebar
|
|
3
|
3
|
section
|
|
4
|
4
|
//- if not single layout with sorting
|
|
5
|
5
|
.shadow(v-if="['artist', 'exhibition', 'event', 'short', 'guide', 'object', 'publication', 'technique', 'post'].includes(type) && layout !== 'single'")
|
|
6
|
|
- h3.t-up sort {{ type }} by
|
|
|
6
|
+ h3.t-up sort {{ type }}
|
|
7
|
7
|
ul.t-up
|
|
8
|
8
|
li(v-for="option in sortOptions")
|
|
9
|
9
|
router-link(:to="`/${type}/sorted/${sortTypes[option]}`")
|
|
10
|
10
|
p {{ option }}
|
|
11
|
|
- //- temporary reminder
|
|
|
11
|
+ //- exhibition, event list sidebar
|
|
12
|
12
|
template(v-if="['exhibition', 'event'].includes(type) && layout === 'list'")
|
|
13
|
13
|
p
|
|
14
|
|
- router-link(:to="`/${type}/`")
|
|
|
14
|
+ router-link(:to="`/${type}`")
|
|
15
|
15
|
p by all
|
|
16
|
16
|
p
|
|
17
|
17
|
router-link(:to="`/${type}/sorted/by-current-and-upcoming`")
|
|
18
|
18
|
p by current and upcoming
|
|
|
19
|
+ //- list sidebar
|
|
19
|
20
|
template(v-if="['short', 'guide', 'publication', 'technique', 'post'].includes(type) && layout === 'list'")
|
|
20
|
21
|
p
|
|
21
|
22
|
router-link(:to="`/${type}`")
|