<?php
/**
* The template for displaying all pages.
*
* This is the template that displays all pages by default.
* Please note that this is the WordPress construct of pages
* and that other 'pages' on your WordPress site may use a
* different template.
*
* @link https://codex.wordpress.org/Template_Hierarchy
*
* @package simpleasy
*/
get_header(); ?>
<?php if ( is_page_template( 'page-templates/page-sidebar-right.php' ) || get_theme_mod( 'layout_setting' ) === 'sidebar-right' ) { ?>
<div id="primary" class="content-area small-12 medium-8 columns sidebar-right">
<?php } else if ( is_page_template( 'page-templates/page-sidebar-left.php' ) || get_theme_mod( 'layout_setting' ) === 'sidebar-left' ) { ?>
<div id="primary" class="content-area small-12 medium-8 medium-push-4 columns sidebar-left">
<?php } else if ( is_page_template( 'page-templates/page-no-sidebar.php' ) || get_theme_mod( 'layout_setting' ) === 'no-sidebar' ) { ?>
<div id="primary" class="content-area small-12 medium-10 medium-push-1 large-8 large-push-2 columns no-sidebar">
<?php } else if ( is_page_template( 'page-templates/page-full-width.php' ) ) { ?>
<div id="primary" class="content-area medium-12 columns no-sidebar page-full-width">
<?php } else { ?>
<div id="primary" class="content-area small-12 medium-8 columns sidebar-right">
<?php } ?>
<main id="main" class="site-main" role="main">
<?php
while ( have_posts() ) : the_post();
get_template_part( 'components/page/content', 'page' );
// 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; // End of the loop.
?>
</main>
</div>
<?php
get_sidebar();
get_footer(); |