summaryrefslogtreecommitdiff
path: root/search.php
diff options
context:
space:
mode:
Diffstat (limited to 'search.php')
-rw-r--r--search.php42
1 files changed, 42 insertions, 0 deletions
diff --git a/search.php b/search.php
new file mode 100644
index 0000000..e0b9b7b
--- /dev/null
+++ b/search.php
@@ -0,0 +1,42 @@
+<?php
+/**
+ * The template for displaying Search Results pages.
+ *
+ * @package WordPress
+ * @subpackage Twenty_Ten
+ * @since Twenty Ten 1.0
+ */
+
+get_header(); ?>
+ <div class="main"><a class="nocss" id="content"></a>
+ <?php
+ global $head;
+ echo "<h$head class=\"page-title\">";
+ printf( __( 'Search Results for: "%s"', 'twentyten' ), '<span>'.get_search_query().'</span>' );
+ echo "</h$head>";
+ $head++;
+ if ( have_posts() ) {
+ get_template_part( 'loop', 'search' );
+ } else {
+ ?>
+ <?php
+ echo "<h$head class=\"entry-title post no-results not-found\">";
+ _e( 'Nothing Found', 'twentyten' );
+ echo "</h$head>";
+ $head++
+ ?>
+ <div class="entry-content">
+ <p><?php _e( 'Sorry, but nothing matched your search criteria. Please try again with some different keywords.', 'twentyten' ); ?></p>
+ <?php get_search_form(); ?>
+ </div><!-- .entry-content -->
+ <?php
+ $head--;
+ ?>
+ </div><!-- #post-0 -->
+ <?php
+ }
+ $head--;
+ ?>
+ </div>
+
+<?php get_footer(); ?>