-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsearch.php
25 lines (25 loc) · 876 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
<?php get_header(); ?>
<?php get_template_part('content', 'banner'); ?>
<section id="main" class="wrapper wrapper--white">
<div class="container">
<div class="content-container">
<div class="primary">
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div id="post-<?php the_ID(); ?>" <?php post_class('posts-page-content'); ?>>
<h2><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h2>
<div class="entry">
<?php the_excerpt(); ?>
</div>
</div>
<?php endwhile; ?>
<?php else : ?>
<h2>Sorry, No Posts Found</h2>
<p>Use the navigation links above or try searching again.</p>
<?php endif; ?>
</div><?php // #primary ?>
<?php get_sidebar(); ?>
</div>
</div><?php // .container ?>
</section><?php // #banner ?>
<?php get_footer(); ?>