<?php
/*
* Blue Taste Wordpress Theme By Jabox (http://www.jabox.com.ar)
*/  
?>
<?php get_header(); ?>

<div id="content">

	<?php if (have_posts()) : ?>

		<h2 class="pagetitle specialtitle">Search Results</h2>
		<?php if (is_search()) { ?>
			<h3>You have searched for <strong>'<?php the_search_query(); ?>'</strong></h3>
			<div class="separator"></div>
			<?php } ?>

		<?php while (have_posts()) : the_post(); ?>

    <div class="post">
		<div class="post-title">
      	  	<?php if (!is_page()) {  ?><div class="post-date"><span class="post-month"><?php the_time('M') ?></span> <span class="post-day"><?php the_time('d') ?></span></div> <?php } ?>
        	<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
         	<?php if (!is_page()) {  ?><span class="post-dates">By <?php the_author(); ?></span><span class="post-comments"><?php comments_popup_link('No Comments', '1 Comment', '% Comments'); ?></span><?php } ?>
      	</div>
		<div class="entry">
    		<?php the_content('Continue reading this entry &raquo;'); ?>
      	</div>
    </div>
    <div class="separator"></div>
	<?php endwhile; ?>

    <div class="navigation-down"><span class="previous-entries"><?php next_posts_link('&lt; Older') ?></span><span
	class="next-entries"><?php previous_posts_link('Newer &gt;') ?></span>
	</div>

	<?php else : ?>
		
		<h2>Not Found</h2>
			<p>Sorry, we couldn't find what you were looking for.</p>
			<div class="separator"></div>
	<?php endif; ?>

	</div>

<?php get_sidebar(); ?>

<?php get_footer(); ?>

 </div>

<?php get_sidebar(); ?>
<?php get_footer(); ?>