File: /home/thanexcelr/www/wp-content/themes/novellite/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.
*
*/
?>
<?php get_header(); ?>
<?php $layout = novellite_get_layout(); ?>
<div class="page_heading_container" <?php if (get_theme_mod('header_image','') != '') { ?>
style="background: url(<?php echo esc_url(get_theme_mod('header_image','')); ?>);"
<?php }?> >
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="page_heading_content">
<h1><?php the_title(); ?></h1>
</div>
</div>
</div>
<div class="clear"></div>
</div>
</div>
<div class="page-container">
<div class="container">
<div class="row">
<div class="page-content <?php echo $layout; ?>">
<?php if ( $layout != 'no-sidebar' ) { ?>
<div class="col-md-9">
<?php } else { ?>
<div class="col-md-12">
<?php } ?>
<div class="content-bar gallery">
<?php while (have_posts()) : the_post(); ?>
<?php the_content(); ?>
<?php endwhile; // end of the loop. ?>
<div class="comment_section">
<!--Start Comment list-->
<?php comments_template('', true); ?>
<!--End Comment Form-->
</div>
</div>
</div>
<?php if ( $layout != 'no-sidebar' ) { ?>
<div class="col-md-3">
<!--Start Sidebar-->
<?php get_sidebar(); ?>
<!--End Sidebar-->
</div>
<?php } ?>
</div>
</div>
<div class="clear"></div>
</div>
</div>
<?php get_footer(); ?>