| 1 |
<?php |
| 2 |
/** |
| 3 |
* Post template for Custom Post Type block |
| 4 |
*/ |
| 5 |
|
| 6 |
$base_class = $extra_attr['block_name']; |
| 7 |
|
| 8 |
?> |
| 9 |
|
| 10 |
<div class="<?php echo esc_attr( $base_class . '__post-wrapper' ); ?>"> |
| 11 |
<?php if (has_post_thumbnail()): ?> |
| 12 |
<div class="<?php echo esc_attr( $base_class . '__post-thumbnail' ); ?>"> |
| 13 |
<a href="<?php the_permalink(); ?>"><?php |
| 14 |
the_post_thumbnail(); |
| 15 |
?></a> |
| 16 |
</div> |
| 17 |
<?php endif; ?> |
| 18 |
<div class="<?php echo esc_attr( $base_class . '__content-wrapper' ); ?>"> |
| 19 |
<div class="<?php echo esc_attr( $base_class . '__post-header' ); ?>"> |
| 20 |
<?php |
| 21 |
the_title( |
| 22 |
'<h3 class="' . esc_attr( $base_class . '__post-title' ) . '"><a href="' . esc_url( get_permalink() ) . '">', |
| 23 |
'</a></h3>' |
| 24 |
); ?> |
| 25 |
</div> |
| 26 |
<div class="<?php echo esc_attr( $base_class . '__post-excerpt' ); ?> "><?php |
| 27 |
the_excerpt(); |
| 28 |
?></div> |
| 29 |
</div> |
| 30 |
</div> |
| 31 |
|