File: /home/zwafgyp/coolswim/wp-content/themes/liftsupply/page-templates/full-width.php
<?php
/**
* Template Name: Full Width Page
*
* @package WpOpal
* @subpackage Liftsupply
* @since Liftsupply 1.0
*/
get_header( apply_filters( 'liftsupply_fnc_get_header_layout', null ) ); ?>
<div id="main-content" class="main-content">
<div id="primary" class="content-area">
<div id="content" class="site-content" role="main">
<?php
// Start the Loop.
while ( have_posts() ) : the_post();
// Include the page content template.
get_template_part( '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();
}
endwhile;
?>
</div><!-- #content -->
</div><!-- #primary -->
</div><!-- #main-content -->
<?php
get_sidebar();
get_footer();