(root)/search.php @ 29 - Rev 27
Rev 3 |
Blame |
Compare with Previous |
Last modification |
View Log
| RSS feed
<?php
/*
* The template for displaying Search Results pages.
*/
get_header
(); ?>
<div id="content">
<?php if (have_posts
()) : ?>
<header id="search-header">
<h1 id="search-title">
<?php printf(__
('Search Results for: %s', 'zendark'), '<span>'.get_search_query
().'</span>'); ?></h1>
</header>
<?php zendark_content_nav
('nav-above'); ?>
<?php /* Start the Loop */ ?>
<?php while (have_posts
()) : the_post
(); ?>
<?php
/* Include the Post-Format-specific template for the content.
* If you want to overload this in a child theme then include a file
* called content-___.php (where ___ is the Post Format name) and that will be used instead.
*/
get_template_part
('content', false);
?>
<?php endwhile; ?>
<?php zendark_content_nav
('nav-below'); ?>
<?php else : ?>
<div>
<header id="search-header">
<h1 id="search-title">
<?php _e
('Nothing Found', 'zendark'); ?></h1>
</header><!-- #search-header -->
<div id="search-content">
<p>
<?php _e
('Sorry, but nothing matched your search criteria. Please try again with some different keywords.', 'zendark'); ?></p>
<?php get_search_form
(); ?>
</div><!-- #search-content -->
</div>
<?php endif; ?>
</div><!-- #content -->
<?php get_sidebar
(); ?>
<?php get_footer
(); ?>