/home/awneajlw/work.codestechvista.com/wp-content/themes/ignavo/post-format/content-gallery.php
<div id="post-<?php the_ID(); ?>" <?php post_class('klb-article post post-module post-module-grid'); ?> style="--post-title-desktop: 32px">

	<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">
		<h3 class="entry-post-title">
			<a href="<?php the_permalink(); ?>"><?php echo the_title(); ?></a>
		</h3>
		<div class="entry-excerpt">
			<?php the_excerpt(); ?>
			<?php wp_link_pages(array('before' => '<div class="klb-pagination">' . esc_html__( 'Pages:', 'ignavo' ),'after'  => '</div>', 'next_or_number' => 'number')); ?>
		</div><!-- entry-excerpt -->
		<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><!-- post-meta -->
	</div>
</div>