• File: archive.php
  • Full Path: /home/romi/public_html/wp-content-20260417071838/themes/fitness-insight/archive.php
  • Date Modified: 09/02/2023 6:16 PM
  • File size: 741 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?php
/**
 * The template for displaying archive pages
 *
 * @subpackage Fitness Insight
 * @since 1.0
 */

get_header(); ?>

<main id="content">
	<div class="container">
		<?php if ( have_posts() ) : ?>
			<header class="page-header">
				<?php
					the_archive_title( '<h1 class="page-title"><span>', '</span></h1>' );
					the_archive_description( '<div class="taxonomy-description">', '</div>' );
				?>
			</header>
		<?php endif; ?>

		<div class="content-area">
			<div id="main" class="site-main" role="main">
		    	<div class="row m-0">	    		
			        <?php
					get_template_part( 'template-parts/post/post-layout' );
					?>
				</div>		
			</div>
		</div>
	</div>
</main>

<?php get_footer();