/home/awneajlw/work.codestechvista.com/wp-content/themes/ignavo/post-format/single-gallery.php
<div class="post single-post">
	<div class="post-header">
		<h1 class="entry-post-title"><?php the_title(); ?></h1>
		<div class="post-meta entry-post-meta">
			<span class="post-meta-item entry-date"><a href="<?php the_permalink(); ?>"><?php echo get_the_date(); ?></a></span>
			
			<?php if(has_category()){ ?>
				<span class="post-meta-item  entry-category">
					<?php the_category(', '); ?>
				</span><!-- entry-category -->
			<?php } ?>
			
			<?php the_tags( '<span class="post-meta-item entry-tags">', ', ', ' </span>'); ?>
			
			<?php if ( is_sticky()) {
				printf( '<span class="post-meta-item sticky-post">%s</span>', esc_html__('Featured', 'ignavo' ) );
			} ?>
		</div><!-- entry-post-meta -->
	</div>

	<figure class="entry-media">
		<?php $images = rwmb_meta( 'klb_blogitemslides', 'type=image_advanced&size=medium' ); ?>
		<?php if($images) { ?>
			
			<div class="blog-gallery">
				<?php  foreach ( $images as $image ) { ?>
					<a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>">
						<img src="<?php echo esc_url($image['full_url']); ?>" alt="<?php the_title_attribute(); ?>">
					</a>
				<?php } ?>
			</div>
		<?php } ?>
	</figure>
	
	<div class="post-content">
		<div class="entry-content">
			<div class="klb-post">
				<?php the_content(); ?>
				<?php wp_link_pages(array('before' => '<div class="klb-pagination">' . esc_html__( 'Pages:', 'ignavo' ),'after'  => '</div>', 'next_or_number' => 'number')); ?>
			</div>
		</div><!-- entry-content -->
	</div><!-- post-content -->
</div><!-- post -->