forked from mirror/_s
41 lines
912 B
PHP
41 lines
912 B
PHP
<?php
|
|
/**
|
|
* The template for displaying Search Results pages.
|
|
*
|
|
* @package _s
|
|
* @since _s 1.0
|
|
*/
|
|
|
|
get_header(); ?>
|
|
|
|
<section id="primary" class="site-content">
|
|
<div id="content" role="main">
|
|
|
|
<?php if ( have_posts() ) : ?>
|
|
|
|
<header class="page-header">
|
|
<h1 class="page-title"><?php printf( __( 'Search Results for: %s', '_s' ), '<span>' . get_search_query() . '</span>' ); ?></h1>
|
|
</header><!-- .page-header -->
|
|
|
|
<?php _s_content_nav( 'nav-above' ); ?>
|
|
|
|
<?php /* Start the Loop */ ?>
|
|
<?php while ( have_posts() ) : the_post(); ?>
|
|
|
|
<?php get_template_part( 'content', 'search' ); ?>
|
|
|
|
<?php endwhile; ?>
|
|
|
|
<?php _s_content_nav( 'nav-below' ); ?>
|
|
|
|
<?php else : ?>
|
|
|
|
<?php get_template_part( 'no-results', 'search' ); ?>
|
|
|
|
<?php endif; ?>
|
|
|
|
</div><!-- #content -->
|
|
</section><!-- #primary .site-content -->
|
|
|
|
<?php get_sidebar(); ?>
|
|
<?php get_footer(); ?>
|