Current File : /home/pacjaorg/wpt.pacja.org/copwordpres/wp-content/themes/fasterly/search.php |
<?php
/**
* The template for displaying search results pages.
*
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/#search-result
*
* @package Fasterly
*/
get_header();
?>
<section id="post-page" class="post-right-sidebar">
<div class="container">
<div class="row">
<div id="fasterly-pdata" class="<?php esc_attr(fasterly_pages_layout()); ?>">
<?php if( have_posts() ): ?>
<?php while( have_posts() ) : the_post();
get_template_part('template-parts/content','page');
endwhile;
the_posts_navigation();
?>
<?php else: ?>
<?php get_template_part('template-parts/content','none'); ?>
<?php endif; ?>
</div>
<?php get_sidebar(); ?>
</div>
</div>
</section>
<?php get_footer(); ?>