-<div id="main-content" class="small-12 large-9 columns">
+<?php
+ $template = get_page_template_slug( $post->ID );
+ if(!$template == 'no-sidebar.php'){ ?>
+ <div id="main-content" class="small-12 large-9 columns">
+ <?php }else{ ?>
+ <div id="main-content" class="small-12 columns">
+ <?php } ?>
+
+
<?php if(function_exists('bcn_display') && !is_front_page() && !is_member())
{
echo "<div class=\"breadcrumbs small-12 columns\">";
<h1 class="page-title-header"><?php echo $title; ?></h1>
</div>
<div class="row">
- <?php get_sidebar();?>
+ <?php if(!$template == 'no-sidebar.php'){ ?>
+ <?php get_sidebar();?>
+ <?php } ?>
+
<?php get_template_part('parts/main-content'); ?>
</div>
</main>