forked from themejack/briar
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsearch.php
More file actions
46 lines (41 loc) · 1.05 KB
/
search.php
File metadata and controls
46 lines (41 loc) · 1.05 KB
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
/**
* The template for displaying search results pages.
*
* @package Briar
* @since 1.0
*/
get_header(); ?>
<div class="page-title">
<div class="container">
<div class="row">
<div class="col-lg-12">
<h1><?php printf( esc_html__( 'Search Results for: %s', 'briar' ), '<span>' . get_search_query() . '</span>' ); ?></h1>
</div><!-- /.col -->
</div><!-- /.row -->
</div><!-- /.container -->
</div><!-- /.page title -->
<div class="container">
<div class="row">
<div class="<?php briar_main_class(); ?>">
<div class="post-list" id="content" role="main">
<?php if ( have_posts() ) : ?>
<?php while ( have_posts() ) : the_post(); ?>
<div class="row">
<?php
get_template_part( 'content', get_post_format() );
?>
</div>
<?php endwhile; ?>
<?php briar_pagination(); ?>
<?php else : ?>
<div class="row">
<?php get_template_part( 'content', 'none' ); ?>
</div>
<?php endif; ?>
</div>
</div>
<?php get_sidebar(); ?>
</div>
</div>
<?php get_footer();