File: /var/www/html/acharyarajnikant.com/wp-content/themes/acharyarajnikant/single.php
<?php
/**
* The template for displaying all single posts
*
* @package Acharya_Rajnikant
*/
get_header();
?>
<div class="container section-padding">
<?php
while ( have_posts() ) :
the_post();
get_template_part( 'template-parts/content', get_post_type() );
the_post_navigation();
// If comments are open or we have at least one comment, load up the comment template.
if ( comments_open() || get_comments_number() ) :
comments_template();
endif;
endwhile;
?>
</div>
<?php
get_footer();