index.php 424 B

1234567891011121314151617181920
  1. <?php get_header(); ?>
  2. <?php get_template_part( 'underscore-templates' ); ?>
  3. <div class="container">
  4. <div id="content" role="main">
  5. <?php if ( have_posts() ) : ?>
  6. <?php while ( have_posts() ) : the_post(); ?>
  7. <?php get_template_part( 'content' ); ?>
  8. <?php endwhile; ?>
  9. <?php else : ?>
  10. <?php get_template_part( 'content', 'none' ); ?>
  11. <?php endif; ?>
  12. </div>
  13. </div>
  14. <?php get_footer(); ?>