slanted/search.php
2017-03-05 21:41:25 +01:00

31 lines
No EOL
718 B
PHP

<?php get_header(); ?>
<div class="content">
<div class="pad group">
<div class="notebox">
<?php esc_html_e('For the term','slanted'); ?> "<span><?php echo get_search_query(); ?></span>".
<?php if ( !have_posts() ): ?>
<?php esc_html_e('Please try another search:','slanted'); ?>
<?php endif; ?>
<div class="search-again">
<?php get_search_form(); ?>
</div>
</div>
<?php if ( have_posts() ) : ?>
<?php while ( have_posts() ): the_post(); ?>
<?php get_template_part('content'); ?>
<?php endwhile; ?>
<?php get_template_part('inc/pagination'); ?>
<?php endif; ?>
</div><!--/.pad-->
</div><!--/.content-->
<?php get_sidebar(); ?>
<?php get_footer(); ?>