Browse Source

Featured artists for episodes, Inserted example layout

tags/0.9.0
Alej 5 years ago
parent
commit
f38b32752b
1 changed files with 19 additions and 0 deletions
  1. 19
    0
      vue-theme/src/pages/single.vue

+ 19
- 0
vue-theme/src/pages/single.vue View File

17
                 p end: {{ dateFrom(post.end) }}
17
                 p end: {{ dateFrom(post.end) }}
18
 
18
 
19
         block.post-single.block-wrapper(v-for="(block, index) in post.blocks" :block="block" @open-gallery="openGallery" :key="`block-${index}`")
19
         block.post-single.block-wrapper(v-for="(block, index) in post.blocks" :block="block" @open-gallery="openGallery" :key="`block-${index}`")
20
+        //- related artists section example layout
21
+        ul
22
+            h2.t-up featured in this episode
23
+        ul.f-row.f-start
24
+            li
25
+                img(src="https://i1.wp.com/www.craftinamerica.org/wp-content/uploads/2020/09/20200210_133120-e1599254267307.jpg")
26
+            li
27
+                h2.t-up Julie Schafler Dale
28
+                p Julie Schafler Dale was the founder and President of Julie: Artisans’ Gallery, New York, which conducted business on Madison Avenue for over forty years. She has served on the Advisory Council for The...
29
+
30
+        ul.f-row.f-grow
31
+            li
32
+                img(src="https://i1.wp.com/www.craftinamerica.org/wp-content/uploads/2020/09/P1033899.jpg")
33
+            li
34
+                h2.t-up George Rodriguez
35
+                p George Rodriguez is a Seattle-based ceramic artist and sculptor who, throughout his career, has used oversized ceramic personalities he creates to tell universal stories. He was born and raised in El Paso, where...
20
 
36
 
21
         credits(v-if="type === 'episodes' && post" :post="post")
37
         credits(v-if="type === 'episodes' && post" :post="post")
22
 
38
 
33
 import sidebar from '@/components/sidebars/sidebar'
49
 import sidebar from '@/components/sidebars/sidebar'
34
 import gallery from '@/components/gallery/'
50
 import gallery from '@/components/gallery/'
35
 import block from '@/components/content-block/block'
51
 import block from '@/components/content-block/block'
52
+// import artists from '@/components/artist'
36
 import credits from '@/components/credits'
53
 import credits from '@/components/credits'
37
 
54
 
38
 import { postTypeGetters } from './mixin-post-types'
55
 import { postTypeGetters } from './mixin-post-types'
190
 </script>
207
 </script>
191
 
208
 
192
 <style lang="postcss">
209
 <style lang="postcss">
210
+@import '../sss/variables.sss'
211
+@import '../sss/theme.sss'
193
 .page--single
212
 .page--single
194
     article
213
     article
195
         > ul
214
         > ul

Loading…
Cancel
Save