File: /home/hzaluminio/www/wp-content/themes/gaze/loop/loop-post-grid-sidebar.php
<div class="row">
<div class="col-md-8">
<div class="row">
<?php
if ( have_posts() ) : while ( have_posts() ) : the_post();
/**
* Get blog posts by blog layout.
*/
get_template_part( 'loop/content-post', 'grid-sidebar' );
endwhile;
else :
/**
* Display no posts message if none are found.
*/
get_template_part( 'loop/content','none' );
endif;
?>
</div>
</div>
<?php get_sidebar(); ?>
</div>
<?php get_template_part( 'inc/content-post', 'pagination' );