File: /var/www/html/wpprotonperinggit/wp-content/themes/voiture/template-posts/single/inner.php
<?php
$post_format = get_post_format();
global $post;
?>
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<div class="inner">
<div class="entry-content-detail <?php echo esc_attr((!has_post_thumbnail())?'not-img-featured':'' ); ?>">
<div class="single-info info-bottom">
<div class="entry-description clearfix">
<?php
the_content();
?>
</div><!-- /entry-content -->
<?php
wp_link_pages( array(
'before' => '<div class="page-links"><span class="page-links-title">' . esc_html__( 'Pages:', 'voiture' ) . '</span>',
'after' => '</div>',
'link_before' => '<span>',
'link_after' => '</span>',
'pagelink' => '<span class="screen-reader-text">' . esc_html__( 'Page', 'voiture' ) . ' </span>%',
'separator' => '',
) );
?>
<?php
$posttags = get_the_tags();
?>
<?php if( !empty($posttags) || voiture_get_config('show_blog_social_share', false) ){ ?>
<div class="tag-social flex-middle-lg">
<?php if( voiture_get_config('show_blog_social_share', false) ) { ?>
<?php get_template_part( 'template-parts/sharebox' ); ?>
<?php } ?>
<?php if(!empty($posttags)){ ?>
<div class="<?php echo esc_attr(voiture_get_config('show_blog_social_share', false) ? 'ali-right' : ''); ?>">
<?php voiture_post_tags(); ?>
</div>
<?php } ?>
</div>
<?php } ?>
</div>
</div>
</div>
<?php
//Previous/next post navigation.
the_post_navigation( array(
'next_text' =>
'<div class="inner">'.
'<div class="navi">' . esc_html__( 'Next Post', 'voiture' ) . ' <i class="flaticon-next"></i></div>'.
'<span class="title-direct">%title</span></div>',
'prev_text' =>
'<div class="inner">'.
'<div class="navi"><i class="flaticon-back"></i> ' . esc_html__( 'Previous Post', 'voiture' ) . '</div>'.
'<span class="title-direct">%title</span></div>',
) );
?>
</article>