
­­­­­­­­­­­­­­­­­­
<!DOCTYPE html>
<html>
<?php
/*//////////////////////////////////////
// Small-left thumbnail
//////////////////////////////////////*/
?>
<div <?php post_class( 'vw-post-box vw-post-box--block-d vw-inview' ); ?> <?php presso_itemtype('Article'); ?>>

	<div class="vw-post-box__inner">

		<?php if ( has_post_thumbnail() ) : ?>

		<div class="vw-post-box__thumbnail-wrapper">
			<a class="vw-post-box__thumbnail" href="<?php echo esc_url( get_permalink() ); ?>" <?php presso_itemprop('url'); ?> rel="bookmark">
				<?php the_post_thumbnail( apply_filters( 'presso_filter_post_box_thumb', 'presso_thumbnail_small', 'block-d' ) ); ?>
			</a>
		</div>
		
		<?php endif; ?>

		<div class="vw-post-box__content">

			<h5 class="vw-post-box__title" <?php presso_itemprop('headline'); ?>>
				<a class="vw-post-box__link" href="<?php echo esc_url( get_permalink() ); ?>" <?php presso_itemprop('url'); ?> rel="bookmark">
					<?php the_title(); ?>
				</a>
			</h5>

			<div class="vw-post-box__meta">
				<?php presso_the_post_view(); ?>
				<?php presso_the_post_date_text(); ?>
			</div>
		</div>
	</div>

	<?php do_action( 'presso_action_post_schema' ); ?>
	
</div>