<?php
$i = 0;
get_header(); ?>
<!-- site-content -->
<div class="site-content clearfix">
<!-- main-column
<div class="main-column"> -->
<?php if (have_posts()) :
while (have_posts()) : the_post();
get_template_part('content', 'page');
endwhile;
else :
echo '<p>No content found</p>';
endif;
?>
<!-- </div><!-- /main-column -->
<?php //get_sidebar(); ?>
</div><!-- /site-content -->
<?php get_footer();
?>