File "page-no-sidebar.php"
Full path: /home/saratextiles/public_html/wp/page-templates/page-no-sidebar.php
File size: 922 bytes
MIME-type: text/x-php
Charset: utf-8
Download Open Edit Advanced Editor Back
<?php
/*
Template Name: Page No Sidebar
*/
defined( 'ABSPATH' ) or die( 'Keep Silent' );
get_header(); ?>
<section id="content" class="site-content page-section default-page">
<div class="row">
<div id="primary" class="content-area col-md-12">
<main id="main" class="site-main" role="main">
<?php while ( have_posts() ) : the_post(); ?>
<?php get_template_part( 'post-contents/content', 'page' ); ?>
<?php if ( velvet_option( 'page-comment', FALSE, TRUE ) ) : ?>
<?php
// 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;
?>
<?php endif; ?>
<?php endwhile; // end of the loop. ?>
</main>
<!-- #main -->
</div>
<!-- .primary -->
</div>
<!-- .row -->
</section>
<?php get_footer();