/home/awneajlw/work.codestechvista.com/wp-content/themes/ignavo/post-format/content.php
<div id="post-<?php the_ID(); ?>" <?php post_class('klb-article post post-module post-module-grid'); ?> style="--post-title-desktop: 32px">
<?php if ( (function_exists('has_post_thumbnail')) && (has_post_thumbnail()) ) { ?>
<div class="post-thumbnail">
<?php
$att=get_post_thumbnail_id();
$image_src = wp_get_attachment_image_src( $att, 'full' );
$image_src = $image_src[0];
?>
<a href="<?php the_permalink(); ?>">
<img src="<?php echo esc_url($image_src); ?>" alt="<?php the_title_attribute(); ?>"/>
</a>
</div>
<?php } ?>
<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>