• File: page.php
  • Full Path: /home/chassiw/www/wp-content/themes/reon/page.php
  • File size: 527 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?php get_header(); ?>

	<div class="wrap_site">
		<div id="main-content" class="main">
			<?php					
			if ( have_posts() ) : while ( have_posts() ) : the_post();
			    get_template_part( 'content/content', 'page' );
			    if ( comments_open() ) comments_template( '', true );
				endwhile; else : ?>
			        <p><?php esc_html_e('Sorry, no pages matched your criteria.', 'reon'); ?></p>
			<?php endif; ?>	
		</div> <!-- #main-content -->
		<?php get_sidebar(); ?>
	</div> <!-- .wrap_site -->

<?php get_footer(); ?>