<?php get_header(); ?>
<section class="content">
<div class="container">
<div class="row">
<div class="col-md-12">
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<?php get_template_part( 'templates/blog/content', 'page' );
endwhile; ?>
<div class="clearfix"></div>
<?php
if ( comments_open() ) {
comments_template( '', true );
} ?>
<?php endif; ?>
</div>
</div>
</div>
</section>
<?php get_footer(); ?>