File: /var/www/html/acharyarajnikant.com/wp-content/themes/acharyarajnikant/archive.php
<?php
/**
* The template for displaying archive pages
*
* @package Acharya_Rajnikant
*/
get_header();
?>
<div class="container section-padding">
<?php if ( have_posts() ) : ?>
<header class="page-header">
<?php
the_archive_title( '<h1 class="page-title">', '</h1>' );
the_archive_description( '<div class="archive-description">', '</div>' );
?>
</header><!-- .page-header -->
<?php
/* Start the Loop */
while ( have_posts() ) :
the_post();
get_template_part( 'template-parts/content', get_post_type() );
endwhile;
the_posts_navigation();
else :
get_template_part( 'template-parts/content', 'none' );
endif;
?>
</div>
<?php
get_footer();