
­­­­­­­­­­­­­­­­­­
<!DOCTYPE html>
<html>
<?php
$enable_photo_stream = presso_get_theme_option( 'enable_photo_stream' );
$photo_count = presso_get_theme_option( 'instagram_photo_count' );

if ( 'none' == $enable_photo_stream ) return;

$ig = presso_get_instagram_feed( $photo_count );

if ( empty( $ig['images'] ) ) return;
?>
<div class="vw-instagram-bar">

	<ul>
		<?php foreach( $ig['images'] as $image ) : ?>
		<li><a href="<?php echo esc_url( $image[ 'link' ]) ?>" target="_blank"><img src="<?php echo esc_url( $image['src'] ); ?>" alt=""></a></li>
		<?php endforeach; ?>
	</ul>

</div>