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

get_header(); ?>

<main id="content">
	<div class="container" id="custom-a-tag">
		<div id="primary" class="content-area entry-content">
			<main id="main" class="site-main" role="main">

				<?php
					while ( have_posts() ) : the_post();

						get_template_part( 'template-parts/page/content', 'page' );

						if ( comments_open() || get_comments_number() ) :
							comments_template();
						endif;

					endwhile; // End of the loop.
				?>

			</main>
		</div>
	</div>
</main>

<?php get_footer();