File: /home/wwwrenee/public_html/wp-content/plugins/insta-gallery/templates/item/item-video.php
<?php
$lazy = 'carousel' !== $feed['layout'] && $feed['lazy'] ? 'loading="lazy"' : '';
$classes = 'carousel' === $feed['layout'] && $feed['lazy'] ? 'swiper-lazy' : '';
?>
<div class="insta-gallery-image-wrap insta-gallery-video-wrap">
<a class="insta-gallery-link" href="<?php echo esc_url( $item['link'] ); ?>" target="_blank">
<video <?php echo $lazy; ?> alt="Instagram" class="insta-gallery-image insta-gallery-video <?php echo esc_attr( $classes ); ?>" loop>
<source src="<?php echo esc_url( $image ); ?>">
</video>
<?php if ( $feed['mask']['display'] ) : ?>
<?php include QLIGG_Frontend::template_path( 'item/item-image-mask.php' ); ?>
<?php endif; ?>
</a>
<?php if ( $item['type'] == 'video' || $item['file_type'] == 'video' ) : ?>
<i class="insta-gallery-icon qligg-icon-video"></i>
<?php elseif ( $item['type'] == 'carousel' ) : ?>
<i class="insta-gallery-icon qligg-icon-gallery"></i>
<?php endif; ?>
<a class="insta-gallery-icon qligg-icon-instagram" href="<?php echo esc_url( $item['link'] ); ?>" target="_blank"></a>
</div>