
­­­­­­­­­­­­­­­­­­
<!DOCTYPE html>
<html>
<?php
/*//////////////////////////////////////
// Overlay elements
//////////////////////////////////////*/
?>
<div class="vw-post-box__overlay">
	<div class="vw-post-box__overlay-icons">
		<?php
		$oembed_url = '';
		if ( has_post_format( 'video' ) ) {
			$oembed_url = presso_get_post_video_url();

		} else if ( has_post_format( 'video' ) ) {
			$oembed_url = presso_get_post_audio_url();

		}

		if ( ! empty( $oembed_url ) ) : ?>
		<a class="vw-post-box__play mfp-iframe" href="<?php echo esc_url( $oembed_url ); ?>" title="<?php esc_attr_e( 'Play video', 'presso' ); ?>"><i class="vw-icon icon-entypo-play"></i></a>
		<?php endif; ?>
		<a class="vw-post-box__zoom" href="<?php echo esc_url( presso_get_featured_image_url() ); ?>" title="<?php echo esc_attr( get_the_title() ); ?>"><i class="vw-icon icon-entypo-search"></i></a>
		<a class="vw-post-box__view" href="<?php echo esc_url( get_permalink() ); ?>"><i class="vw-icon icon-entypo-link"></i></a>
	</div>
</div>