Your IP : 216.73.216.59


Current Path : /home/cognqeap/wp-content/themes/i-design/
Upload File :
Current File : /home/cognqeap/wp-content/themes/i-design/search.php

<?php
/**
 * The template for displaying Search Results pages
 *
 * @package i-design
 * @since i-design 1.0
 */

get_header(); ?>

	<div id="primary" class="content-area">
		<div id="content" class="site-content" role="main">

		<?php if ( have_posts() ) : ?>
			<?php /* The loop */ ?>
			<?php while ( have_posts() ) : the_post(); ?>
				<?php get_template_part( 'content', get_post_format() ); ?>
			<?php endwhile; ?>

            <?php the_posts_pagination(); ?>            

		<?php else : ?>
			<?php get_template_part( 'content', 'none' ); ?>
		<?php endif; ?>

		</div><!-- #content -->
		<?php get_sidebar(); ?>
	</div><!-- #primary -->


<?php get_footer(); ?>