
­­­­­­­­­­­­­­­­­­
<!DOCTYPE html>
<html>
<?php
/*
@var $gallery_photos
@var $gallery_layout
@var $gallery_class
*/

$image_size = 'presso_thumbnail_dynamic';

$attr_gallery_class = '' ;
if ( ! empty( $gallery_class ) ) {
	$attr_gallery_class = implode( ' ', $gallery_class );
}
?>
<div class="vw-gallery <?php echo esc_attr( $attr_gallery_class ); ?> vw-carousel-slider">

	<div class="vw-slides vw-slides--loading">
		<?php foreach( $gallery_photos as $i => $attachment_id ) : ?>
			<?php $full_image_url = wp_get_attachment_image_src( $attachment_id, 'full' ); ?>
			<div class="vw-slides__slide">
				<a href="<?php echo esc_url( $full_image_url[0] ); ?>">
					<?php echo wp_get_attachment_image( $attachment_id, $image_size ); ?>
				</a>
				
				<?php 
					$image_caption = get_post( $attachment_id )->post_excerpt;
					if ( ! empty( $image_caption ) ) {
						printf( '<div class="vw-floating-caption"><span class="vw-caption">%s</span></div>', esc_html( $image_caption ) );
					}
				?>
			</div>
		<?php endforeach; ?>
	</div>
</div>