-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsearch.php
40 lines (27 loc) · 895 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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<?php get_header(); ?>
<div class="colored-line"></div>
<section id="main">
<div class="shell shell-inner-page">
<div class="container clearfix left">
<section id="content" <?php post_class('left'); ?>>
<article class="entry">
<section>
<?php js_breadcrumbs($post->ID); ?>
<h1 class="bitter"><?php _e('Search Results','crowdpress'); ?></h1>
<?php if ( have_posts() ) : ?>
<?php while (have_posts()) : the_post(); ?>
<?php get_template_part('single-post-block'); ?>
<?php endwhile; ?>
<?php endif; ?>
<?php js_get_pagination(); wp_reset_query(); ?>
</section>
</article>
</section>
<aside class="<?php echo $sidebar_post_class; ?>">
<?php get_sidebar(); ?>
</aside>
<div class="cl"></div>
</div>
</div>
</section>
<?php get_footer(); ?>