1
0
mirror of https://github.com/ackxolotl/wp-theme-dpsg-ebersberg synced 2025-10-06 00:12:48 +02:00
Files
wp-theme-dpsg-ebersberg/search.php
Simon Ellmann 6ee4949a67 Initial commit
2019-07-14 13:21:04 +02:00

38 lines
870 B
PHP

<?php
/**
* The template for displaying Search Results pages.
*
* @package dpsg-ebersberg
*/
get_header(); ?>
<section id="primary" class="content-area">
<main id="main" class="site-main" role="main">
<?php if ( have_posts() ) : ?>
<header class="page-header">
<h1 class="page-title"><?php printf( __( 'Search Results for: %s', 'dpsg-ebersberg' ), '<span>' . get_search_query() . '</span>' ); ?></h1>
</header><!-- .page-header -->
<?php /* Start the Loop */ ?>
<?php while ( have_posts() ) : the_post(); ?>
<?php get_template_part( 'content', 'search' ); ?>
<?php endwhile; ?>
<?php dpsg_ebersberg_content_nav( 'nav-below' ); ?>
<?php else : ?>
<?php get_template_part( 'no-results', 'search' ); ?>
<?php endif; ?>
</main><!-- #main -->
</section><!-- #primary -->
<?php get_sidebar(); ?>
<?php get_footer(); ?>