File: /home/adventp/www/wp-content/themes/brooklyn/page.php
<?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 will use a
* different template.
*
* @package unitedthemes
*/
$ut_page_skin = get_post_meta( $post->ID , 'ut_section_skin' , true);
$ut_page_skin = empty( $ut_page_skin ) ? 'global' : $ut_page_skin;
$ut_page_class = get_post_meta( $post->ID , 'ut_section_class' , true);
$ut_get_sidebar_settings = ut_get_sidebar_settings();
$ut_page_fullwidth = get_post_meta( $post->ID , 'ut_page_fullwidth' , true);
get_header(); ?>
<?php if( !$ut_page_fullwidth || $ut_page_fullwidth == 'off' ) : ?>
<div class="grid-container">
<?php endif; ?>
<?php $grid = !empty( $ut_get_sidebar_settings ) && $ut_get_sidebar_settings['primary_sidebar'] != 'no_sidebar' && is_active_sidebar( $ut_get_sidebar_settings['primary_sidebar'] ) ? 'grid-75 tablet-grid-100 mobile-grid-100' : 'grid-100 tablet-grid-100 mobile-grid-100'; ?>
<div id="primary" class="grid-parent <?php echo esc_attr($grid); ?> <?php echo esc_attr($ut_page_skin); ?> <?php echo esc_attr($ut_page_class); ?>">
<?php while ( have_posts() ) : the_post(); ?>
<?php get_template_part( 'partials/content', 'page' ); ?>
<?php
// If comments are open or we have at least one comment, load up the comment template
if ( comments_open() || '0' != get_comments_number() )
comments_template();
?>
<?php endwhile; // end of the loop. ?>
</div><!-- close #primary -->
<?php get_sidebar('page'); ?>
<?php if( !$ut_page_fullwidth || $ut_page_fullwidth == 'off' ) : ?>
</div><!-- close grid-container -->
<?php endif; ?>
<div class="ut-scroll-up-waypoint" data-section="section-<?php echo ut_clean_section_id($post->post_name); ?>"></div>
<?php get_footer(); ?>