|
|
@@ -23,17 +23,13 @@
|
|
23
|
23
|
//- related artists section example layout
|
|
24
|
24
|
section(v-if="type === 'episodes' && post" :post="post")
|
|
25
|
25
|
h2.t-up featured in this episode
|
|
26
|
|
- ul.f-row.between
|
|
27
|
|
- img(src="https://i1.wp.com/www.craftinamerica.org/wp-content/uploads/2020/09/20200210_133120-e1599254267307.jpg")
|
|
28
|
|
- li.f-col.between
|
|
29
|
|
- h2.t-up Julie Schafler Dale
|
|
30
|
|
- 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...
|
|
31
|
|
- ul.f-row.between
|
|
32
|
|
- img(src="https://i1.wp.com/www.craftinamerica.org/wp-content/uploads/2020/09/P1033899.jpg")
|
|
33
|
|
- li.f-col.between
|
|
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...
|
|
36
|
|
-
|
|
|
26
|
+ ul
|
|
|
27
|
+ li.f-row.between(v-for="artist in p2pPostsByType['artist']")
|
|
|
28
|
+ img(src="https://i1.wp.com/www.craftinamerica.org/wp-content/uploads/2020/09/20200210_133120-e1599254267307.jpg")
|
|
|
29
|
+ .f-col
|
|
|
30
|
+ h2.t-up {{ artist.title }}
|
|
|
31
|
+ p {{ artist }}
|
|
|
32
|
+
|
|
37
|
33
|
credits(v-if="type === 'episodes' && post" :post="post")
|
|
38
|
34
|
|
|
39
|
35
|
sidebar(v-if="sidebar" :type="`${type}`" layout="single" :related="p2pPostsByType")
|
|
|
@@ -43,7 +39,6 @@
|
|
43
|
39
|
import sidebar from '@/components/sidebars/sidebar'
|
|
44
|
40
|
import gallery from '@/components/gallery/'
|
|
45
|
41
|
import block from '@/components/content-block/block'
|
|
46
|
|
-// import artists from '@/components/artist'
|
|
47
|
42
|
import credits from '@/components/credits'
|
|
48
|
43
|
|
|
49
|
44
|
import { postTypeGetters, scrollTop } from './mixin-post-types'
|