-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsearch.php
46 lines (31 loc) · 1.24 KB
/
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
41
42
43
44
45
46
<?php
/* ------------------------------------------------------------------------- *
* Search results template
/* ------------------------------------------------------------------------- */
?>
<?php get_header(); ?>
<section class="container<?php ac_mini_disabled() ?> main-section clearfix">
<?php get_sidebar( 'browse' ); ?>
<div class="wrap-template-1 clearfix">
<section class="content-wrap with-title" role="main">
<header class="main-page-title">
<h1 class="page-title"><?php printf( __( 'Search Results for: %s', 'justwrite' ), '<span>' . get_search_query() . '</span>' ) . ac_icon( 'angle-down' ) ?></h1>
</header>
<div class="posts-wrap clearfix">
<?php
if ( have_posts() ) :
while ( have_posts() ) :
the_post();
get_template_part( 'post-templates/content', 'index' );
endwhile;
else :
get_template_part( 'post-templates/content', 'no-articles' );
endif;
?>
</div><!-- END .posts-wrap -->
<?php ac_paginate(); ?>
</section><!-- END .content-wrap -->
<?php get_sidebar(); ?>
</div><!-- END .wrap-template-1 -->
</section><!-- END .container -->
<?php get_footer(); ?>