<section class="search-engine">
	<header>
    	<h1><?php echo $this->translate( '#search#' ); ?></h1>
		<?php  //echo $this->form; ?>
    	<h2><?php echo $this->translate( '#results#' ); ?></h2>
	</header>

<?php if ( isset( $this->hits ) && count( $this->hits ) ) : ?>
    <ol class="results">
<?php foreach ( $this->hits as $hit ) :
        if ( $hit->score <= .3 ) continue; ?>
        <li class="hit <?php echo $this->cycle( array( 'odd', 'even' ) )->next(); ?>">
        	<header><a href="<?php echo $this->baseUrl( $hit->url ); ?>"><?php echo ucfirst($hit->title); ?></a></header>
        	<?php if($hit->thumbnail):?>
            <a href="<?php echo $this->baseUrl( $hit->url ); ?>" class="thumbnail"><?php echo $this->htmlImage( $hit->thumbnail ); ?></a>
			<?php endif;?>
            <?php echo $this->truncate( strip_tags($hit->summary), 250, true ); ?>
            <footer class="clearfix"><?= Alfred_Hod::options('params/default/siteDomain').$hit->url .' - ' . ucfirst($hit->type) ?></footer>
        </li>
<?php endforeach; ?>
    </ol>
<?php else : ?>
    <p><?php echo $this->translate( '#there is no result#' ); ?></p>
<?php endif; ?>
</section>