-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsearch.php
37 lines (32 loc) · 1.07 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
<?php
get_header();
quality_breadcrumbs(); ?>
<section id="section-block" class="site-content">
<div class="container">
<div class="row">
<!--Blog Content-->
<div class="col-md-<?php echo ( !is_active_sidebar( 'sidebar-primary' ) ? '12' :'8' ); ?> col-xs-12">
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<?php get_template_part('content',''); ?>
<?php endwhile; ?>
<?php else : ?>
<h2><?php esc_attr_e('Nothing Found', 'quality'); ?></h2>
<p><?php esc_attr_e('Sorry, but nothing matched your search criteria. Please try again with some different keywords.','quality'); ?></p>
<div class="paginations">
<!-- Pagination -->
<?php
// Previous/next page navigation.
the_posts_pagination( array(
'prev_text' => '<i class="fa fa-angle-double-left"></i>',
'next_text' => '<i class="fa fa-angle-double-right"></i>',
) );
?>
</div>
<?php endif; ?>
</div>
<!--/Blog Content-->
<?php get_sidebar(); ?>
</div>
</div>
</section>
<?php get_footer(); ?>