Advertisement
Guest User

Untitled

a guest
Dec 19th, 2012
174
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.41 KB | None | 0 0
  1. <?php
  2. /**
  3. * The template for displaying Search Results pages.
  4. *
  5. * @package Toolbox
  6. * @since Toolbox 0.1
  7. */
  8.  
  9. get_header(); ?>
  10.  
  11. <section id="primary">
  12. <div id="content" role="main">
  13.  
  14. <?php if ( have_posts() ) : ?>
  15.  
  16. <header class="search-page-header">
  17. <h1 class="page-title"><?php printf( __( 'Search Results for: %s', 'toolbox' ), '<span>' . get_search_query() . '</span>' ); ?></h1>
  18. </header>
  19.  
  20. <?php //toolbox_content_nav( 'nav-above' ); ?>
  21.  
  22. <?php /* Start the Loop */ ?>
  23. <ul id="sfpw">
  24. <?php while ( have_posts() ) : the_post(); ?>
  25. <li><div class="sfpw-li-wrapper">
  26. <?php get_template_part( 'content', 'search' ); ?>
  27. </div></li>
  28. <?php endwhile; ?>
  29. </ul>
  30. <?php toolbox_content_nav( 'nav-below' ); ?>
  31.  
  32. <?php else : ?>
  33.  
  34. <article id="post-0" class="post no-results not-found">
  35. <header class="entry-header">
  36. <h1 class="entry-title"><?php _e( 'Nothing Found', 'toolbox' ); ?></h1>
  37. </header><!-- .entry-header -->
  38.  
  39. <div class="entry-content">
  40. <p><?php _e( 'Sorry, but nothing matched your search terms. Please try again with some different keywords.', 'toolbox' ); ?></p>
  41. <?php get_search_form(); ?>
  42. </div><!-- .entry-content -->
  43. </article><!-- #post-0 -->
  44.  
  45. <?php endif; ?>
  46.  
  47. </div><!-- #content -->
  48. </section><!-- #primary -->
  49.  
  50. <?php get_sidebar(); ?>
  51. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement