File: /www/wwwroot/pulitocucito.it/wp-content/themes/laundry/page-sidebar-left.php
<?php
/**
* @package Laundry
*/
get_header(); ?>
<div class="container page page_sidebar_left">
<div class="col-md-3 column-right">
<?php get_sidebar(); ?>
</div>
<div class="col-md-9 column-center">
<?php
while ( have_posts() ) :
the_post();
get_template_part( 'template-parts/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();
endif;
endwhile; // End of the loop.
?>
</div>
</div><!-- #primary -->
<?php
get_footer();