checking to make sure the blocks have an image url before trying to put the url for the block
as a bg url
<?php $image = get_the_post_thumbnail_url($block->ID, 'full'); ?>
<a href="<?php echo $block->url;?>"<?php if($block->externalUrl){echo ' target="_blank"';}?>>
<?php endif;?>
- <div class="interior-block-image" style="background-image: url(<?php echo $image; ?>)"></div>
+ <?php if($image){ ?>
+ <div class="interior-block-image" style="background-image: url(<?php echo $image; ?>)"></div>
+ <?php } else { ?>
+ <div class="block-no-image"></div>
+ <?php } ?>
<?php if($block->url):?>
</a>
<?php endif;?>