|
|
@@ -1,7 +1,7 @@
|
|
1
|
1
|
<template lang="pug">
|
|
2
|
2
|
aside.sidebar
|
|
3
|
3
|
section
|
|
4
|
|
- //- if Artist sorting
|
|
|
4
|
+ //- single layout Artist sorting
|
|
5
|
5
|
.shadow(v-if="type === 'artists' && layout !== 'single'")
|
|
6
|
6
|
h3.t-up sort {{ type }} by
|
|
7
|
7
|
ul.t-up
|
|
|
@@ -20,14 +20,21 @@ aside.sidebar
|
|
20
|
20
|
//- Optional passthrough
|
|
21
|
21
|
slot
|
|
22
|
22
|
|
|
23
|
|
- //- if Exhibitions
|
|
|
23
|
+ //- single layout Exhibitions sidebar
|
|
24
|
24
|
.shadow(v-if="layout === 'single'")
|
|
25
|
25
|
exhibitions-sidebar
|
|
26
|
26
|
|
|
27
|
|
- //- if Events
|
|
|
27
|
+ //- single layout Events sindebar
|
|
28
|
28
|
.shadow(v-if="layout === 'single'")
|
|
29
|
29
|
events-sidebar
|
|
30
|
|
-
|
|
|
30
|
+
|
|
|
31
|
+ //- list layout Exhibition sidebar show events
|
|
|
32
|
+ .shadow(v-if="type === 'exhibitions' && layout === 'list'")
|
|
|
33
|
+ events-sidebar
|
|
|
34
|
+ //- list layout Events sidebar show exhibitions
|
|
|
35
|
+ .shadow(v-if="type === 'events' && layout === 'list'")
|
|
|
36
|
+ exhibitions-sidebar
|
|
|
37
|
+
|
|
31
|
38
|
</template>
|
|
32
|
39
|
|
|
33
|
40
|
<script>
|