1234567891011121314151617181920 |
- <?php get_header(); ?>
- <?php get_template_part( 'underscore' ); ?>
- <div class="container">
- <div id="content" role="main">
- <?php if ( have_posts() ) : ?>
- <?php while ( have_posts() ) : the_post(); ?>
- <?php get_template_part( 'content' ); ?>
- <?php endwhile; ?>
- <?php else : ?>
- <?php get_template_part( 'content', 'none' ); ?>
- <?php endif; ?>
- </div>
- </div>
- <?php get_footer(); ?>
|