37 lines
808 B
PHP
37 lines
808 B
PHP
|
<?php
|
||
|
/**
|
||
|
* The template for displaying search results pages.
|
||
|
*
|
||
|
* @package Biofriction
|
||
|
* @since Biofriction 1.0.0
|
||
|
*/
|
||
|
|
||
|
get_header(); ?>
|
||
|
|
||
|
<div class="main-container">
|
||
|
<div class="main-grid">
|
||
|
<main id="search-results" class="main-content">
|
||
|
|
||
|
<header>
|
||
|
<h1 class="entry-title"><?php _e( 'Search Results for', 'foundationpress' ); ?> "<?php echo get_search_query(); ?>"</h1>
|
||
|
</header>
|
||
|
|
||
|
<?php if ( have_posts() ) : ?>
|
||
|
|
||
|
<?php while ( have_posts() ) : the_post(); ?>
|
||
|
<?php get_template_part( 'template-parts/content', get_post_format() ); ?>
|
||
|
<?php endwhile; ?>
|
||
|
|
||
|
<?php else : ?>
|
||
|
<?php get_template_part( 'template-parts/content', 'none' ); ?>
|
||
|
|
||
|
<?php endif; ?>
|
||
|
|
||
|
<?php get_template_part( 'template-parts/navigation', 'indexednav' ); ?>
|
||
|
|
||
|
</main>
|
||
|
|
||
|
</div>
|
||
|
</div>
|
||
|
<?php get_footer();
|