2010-03-29 18:03:15 -04:00
|
|
|
<?php
|
|
|
|
/**
|
2010-05-17 02:32:03 -04:00
|
|
|
* The template for displaying Search Results pages.
|
2010-03-29 18:03:15 -04:00
|
|
|
*
|
|
|
|
* @package WordPress
|
2010-05-16 13:10:21 -04:00
|
|
|
* @subpackage Twenty_Ten
|
2010-05-17 02:36:11 -04:00
|
|
|
* @since Twenty Ten 1.0
|
2010-03-29 18:03:15 -04:00
|
|
|
*/
|
|
|
|
|
2010-06-11 12:55:41 -04:00
|
|
|
get_header(); ?>
|
2010-02-08 13:02:23 -05:00
|
|
|
|
|
|
|
<div id="container">
|
2010-05-10 17:10:12 -04:00
|
|
|
<div id="content" role="main">
|
2010-02-08 13:02:23 -05:00
|
|
|
|
2010-02-07 11:16:26 -05:00
|
|
|
<?php if ( have_posts() ) : ?>
|
2010-03-16 16:17:22 -04:00
|
|
|
<h1 class="page-title"><?php printf( __( 'Search Results for: %s', 'twentyten' ), '<span>' . get_search_query() . '</span>' ); ?></h1>
|
2010-03-25 18:04:27 -04:00
|
|
|
<?php
|
|
|
|
/* Run the loop for the search to output the results.
|
|
|
|
* If you want to overload this in a child theme then include a file
|
|
|
|
* called loop-search.php and that will be used instead.
|
|
|
|
*/
|
|
|
|
get_template_part( 'loop', 'search' );
|
|
|
|
?>
|
2010-02-07 11:16:26 -05:00
|
|
|
<?php else : ?>
|
|
|
|
<div id="post-0" class="post no-results not-found">
|
2010-02-13 20:00:22 -05:00
|
|
|
<h2 class="entry-title"><?php _e( 'Nothing Found', 'twentyten' ); ?></h2>
|
2010-02-07 11:16:26 -05:00
|
|
|
<div class="entry-content">
|
|
|
|
<p><?php _e( 'Sorry, but nothing matched your search criteria. Please try again with some different keywords.', 'twentyten' ); ?></p>
|
2010-02-13 20:00:22 -05:00
|
|
|
<?php get_search_form(); ?>
|
2010-02-07 11:16:26 -05:00
|
|
|
</div><!-- .entry-content -->
|
2010-05-21 14:56:27 -04:00
|
|
|
</div><!-- #post-0 -->
|
2010-02-08 13:02:23 -05:00
|
|
|
<?php endif; ?>
|
|
|
|
</div><!-- #content -->
|
2010-02-07 11:16:26 -05:00
|
|
|
</div><!-- #container -->
|
2010-02-08 13:02:23 -05:00
|
|
|
|
|
|
|
<?php get_sidebar(); ?>
|
2010-03-16 16:17:22 -04:00
|
|
|
<?php get_footer(); ?>
|