<?php
/**
 * @package WordPress
 * @subpackage coe
 */
if ( !defined( 'ABSPATH' ) ) exit; // Exit if accessed directly

get_header();

include('scripts/search_excerpt/ylsy_search_excerpt.php');
?>

<div id="content-container" class="container_24">
    <div id="main-content" class="grid_24">
	<div class="main-content-padding">
<?php       coe_main_content_top( is_front_page() ); ?>

<?php       if (have_posts()) : 
                while (have_posts()) : the_post(); ?>
                    <div <?php post_class(); ?> id="post-<?php the_ID(); ?>">
<?php                   coe_entry_before(); ?>
                        <div class="entry">
<?php                       coe_entry_top(); ?>
                        
<?php                       $title = get_the_title();
                            $search_term = preg_replace('/\/|\+|\*|\[|\]/iu','', trim($s));
                            $keys= explode(" ",$search_term);
                            $title = preg_replace( '/('.implode('|', $keys) .')/iu', '<strong class="search-excerpt">\0</strong>', $title );
?>
                            <h3 id="post-<?php the_ID(); ?>"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php echo $title; ?></a></h3>
<?php
                            $excerpt = new SearchExcerpt();
                            echo strip_shortcodes( $excerpt->the_excerpt( get_the_excerpt() ) ); ?>
                        
<?php                       coe_entry_bottom(); ?>
                        </div>
<?php                   coe_entry_after(); ?>
                    </div>

<?php		endwhile; ?>

		<div class="clear"></div>

<?php		// Pagination
                if(function_exists('wp_pagenavi')) :
                    wp_pagenavi();
                else : ?>
                    <div class="navigation">
                            <div class="alignleft"><?php previous_posts_link() ?></div>
                            <div class="alignright"><?php next_posts_link() ?></div>
                    </div>
<?php		endif; ?>

<?php       else : ?>
		<h2 class="center"><?php esc_html_e("Didn't find what you were looking for? Refine your search!", 'coe'); ?></h2>
                <div class="search-form-on-page"><?php get_search_form(); ?></div>

<?php       endif;
	    //Reset Query
	    wp_reset_query(); ?>

	    <div class="clear"></div>
            
<?php       coe_main_content_bottom(); ?>
	</div><!-- end main-content-padding -->
    </div><!-- end main-content -->
</div><!-- end content-container -->

<div class="clear"></div>

<?php

get_footer();


