search.php 667 B

1234567891011121314151617181920212223242526272829303132
  1. <?php
  2. /**
  3. * The template for displaying Search Results pages.
  4. *
  5. * @package Libretto
  6. */
  7. get_header(); ?>
  8. <section id="primary" class="content-area">
  9. <div id="content" class="site-content" role="main">
  10. <?php if ( have_posts() ) : ?>
  11. <?php /* Start the Loop */ ?>
  12. <?php while ( have_posts() ) : the_post(); ?>
  13. <?php get_template_part( 'content', 'search' ); ?>
  14. <?php endwhile; ?>
  15. <?php libretto_content_nav( 'nav-below' ); ?>
  16. <?php else : // If search returns no results ?>
  17. <?php get_template_part( 'content', 'none' ); ?>
  18. <?php endif; ?>
  19. </div><!-- #content -->
  20. </section><!-- #primary -->
  21. <?php get_sidebar(); ?>
  22. <?php get_footer(); ?>