archive.php 537 B

1234567891011121314151617181920212223242526
  1. <?php get_header(); ?>
  2. <section id="content" class="site-content" role="main">
  3. <?php if ( have_posts() ) : ?>
  4. <?php rewind_posts(); ?>
  5. <?php foto_content_nav( 'nav-above' ); ?>
  6. <?php while ( have_posts() ) : the_post(); ?>
  7. <?php get_template_part( 'content' ); ?>
  8. <?php endwhile; ?>
  9. <?php foto_content_nav( 'nav-below' ); ?>
  10. <?php else : ?>
  11. <?php get_template_part( 'no-results', 'archive' ); ?>
  12. <?php endif; ?>
  13. </section><!-- end #content .site-content -->
  14. <?php get_footer(); ?>