2010-02-07 17:16:26 +01:00
|
|
|
<?php get_header(); ?>
|
2010-02-08 19:02:23 +01:00
|
|
|
|
|
|
|
<div id="container">
|
2010-02-07 17:16:26 +01:00
|
|
|
<div id="content">
|
2010-02-08 19:02:23 +01:00
|
|
|
|
2010-02-07 17:16:26 +01:00
|
|
|
<?php if ( have_posts() ) : ?>
|
|
|
|
<h1 class="page-title"><?php _e( 'Search Results for: ', 'twentyten' ); ?><span><?php the_search_query(); ?></span></h1>
|
2010-02-14 08:13:34 +01:00
|
|
|
<?php include 'loop.php'; ?>
|
2010-02-07 17:16:26 +01:00
|
|
|
<?php else : ?>
|
|
|
|
<div id="post-0" class="post no-results not-found">
|
2010-02-14 02:00:22 +01:00
|
|
|
<h2 class="entry-title"><?php _e( 'Nothing Found', 'twentyten' ); ?></h2>
|
2010-02-07 17:16:26 +01: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-14 02:00:22 +01:00
|
|
|
<?php get_search_form(); ?>
|
2010-02-07 17:16:26 +01:00
|
|
|
</div><!-- .entry-content -->
|
|
|
|
</div>
|
2010-02-08 19:02:23 +01:00
|
|
|
<?php endif; ?>
|
|
|
|
</div><!-- #content -->
|
2010-02-07 17:16:26 +01:00
|
|
|
</div><!-- #container -->
|
2010-02-08 19:02:23 +01:00
|
|
|
|
|
|
|
<?php get_sidebar(); ?>
|
2010-02-07 17:16:26 +01:00
|
|
|
<?php get_footer(); ?>
|