-
Notifications
You must be signed in to change notification settings - Fork 0
/
content-botd.php
23 lines (23 loc) · 973 Bytes
/
content-botd.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?php
$block_classes = array( 'event-block', 'event', 'block', 'item', 'col', 'col-12', 'col-sm-12', 'col-md-8', 'col-lg-6', 'botd' );
?>
<div data-id="<?php the_ID(); ?>" data-post-type="events" data-event-type="exhibition" <?php post_class( $block_classes ); ?>>
<a class="item-link" href="<?= the_permalink(); ?>">
<div class="row">
<div class="col col-12 mobile">
<?php if( has_post_thumbnail( get_the_ID() ) ): ?>
<img class="block-thumb" src="<?= the_post_thumbnail_url( 'custom' ); ?>"/>
<?php endif; ?>
</div>
<div class="col col-12 col-sm-6 text">
<div class="event-title"><?= get_the_title(); ?></div>
<div class="event-type">—Building of the Day</div>
</div>
<div class="col col-12 col-sm-6 desktop">
<?php if( has_post_thumbnail( get_the_ID() ) ): ?>
<div class="block-thumb" style="background-image:url(<?= the_post_thumbnail_url( 'custom' ); ?>)"></div>
<?php endif; ?>
</div>
</div>
</a>
</div>