47 lines
1.3 KiB
PHP
47 lines
1.3 KiB
PHP
<?php
|
|
/**
|
|
* The template for displaying search results pages.
|
|
*/
|
|
get_header();
|
|
get_template_part('/template-parts/site', 'breadcrumb');
|
|
?>
|
|
<section id="abiz-blog-section" class="blog-section st-py-default">
|
|
<div class="container">
|
|
<div class="row gy-lg-0 gy-5 wow fadeInUp">
|
|
<div class="<?php if ( is_active_sidebar('sidebar-primary') ){ esc_attr_e('col-lg-8','abiz'); } else { esc_attr_e('col-lg-12','abiz'); } ?>">
|
|
<div class="row row-cols-1 row-cols-lg-2 row-cols-md-2 g-5">
|
|
<?php
|
|
if( have_posts() ):
|
|
while( have_posts() ) : the_post();
|
|
get_template_part('template-parts/content','page');
|
|
endwhile;
|
|
the_posts_navigation();
|
|
else:
|
|
get_template_part('template-parts/content','none');
|
|
endif;
|
|
?>
|
|
</div>
|
|
<div class="row">
|
|
<div class="col-12 text-center mt-5">
|
|
<div class="fx-post-pagination">
|
|
<?php
|
|
// Pagination.
|
|
the_posts_pagination(
|
|
array(
|
|
'prev_text' => '<i class="fa fa-angle-left"></i>',
|
|
'next_text' => '<i class="fa fa-angle-right"></i>',
|
|
)
|
|
);
|
|
?>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<?php
|
|
// Sidebar
|
|
get_sidebar();
|
|
?>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
<?php get_footer(); ?>
|