-
Notifications
You must be signed in to change notification settings - Fork 1
/
search.php
28 lines (24 loc) · 885 Bytes
/
search.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?php
/**
* @package Coraline
* @since Coraline 1.0
*/
get_header(); ?>
<div id="page-content">
<div id="page-body">
<?php if ( have_posts() ) : ?>
<h1><?php printf( __( 'Search Results for: %s', 'coraline' ), '<span>' . get_search_query() . '</span>' ); ?></h1><hr><br>
<?php get_template_part( 'loop', 'search' ); ?>
<?php else : ?>
<div id="post-0" class="post no-results not-found">
<h2 class="entry-title"><?php _e( 'Nothing Found', 'coraline' ); ?></h2>
<div class="entry-content">
<p><?php _e( 'Sorry, but nothing matched your search criteria. Please try again with some different keywords.', 'coraline' ); ?></p>
<?php get_search_form(); ?>
</div><!-- .entry-content -->
</div><!-- #post-0 -->
<?php endif; ?>
</div><!-- #content -->
</div><!-- #content-container -->
<?php get_sidebar(); ?>
<?php get_footer(); ?>