File: /var/www/html/wpprotonperinggit/wp-content/themes/voiture/template-posts/single/header-info.php
<?php
$post_format = get_post_format();
global $post;
?>
<div class="text-center entry-content-detail header-info-blog">
<div class="container">
<?php if (get_the_title()) { ?>
<h1 class="detail-title">
<?php the_title(); ?>
</h1>
<?php } ?>
<div class="top-detail-info clearfix">
<a href="<?php echo esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ); ?>">
<i class="flaticon-user"></i>
<?php echo get_the_author(); ?>
</a>
<span class="comments"><i class="flaticon-chat"></i><?php comments_number( esc_html__('0 Comments', 'voiture'), esc_html__('1 Comment', 'voiture'), esc_html__('% Comments', 'voiture') ); ?></span>
<span class="date">
<i class="flaticon-calendar-1"></i>
<?php the_time( get_option('date_format', 'd M, Y') ); ?>
</span>
</div>
</div>
<?php if(has_post_thumbnail()) { ?>
<div class="entry-thumb">
<?php
$thumb = voiture_post_thumbnail();
echo trim($thumb);
?>
</div>
<?php } ?>
</div>