<?php get_header(); ?>
<div id="post">
<h2>Search Results</h2>
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div class="content">
<div class="entry">
<h2 id="post-<?php the_ID(); ?>"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h2>
<p><small><?php the_time('l, F jS, Y') ?></small></p>
<i><p class="postmeta">Category: <?php the_category(', ') ?> | Comments: <?php comments_popup_link('0', '1', '%'); ?> <?php edit_post_link('Edit This', ' | ', ''); ?></p></i>
</div></div>
<?php endwhile; ?>
<div class="navigation">
<div class="alignleft"><?php next_posts_link('« Previous Entries') ?></div>
<div class="alignright"><?php previous_posts_link('Next Entries »') ?></div>
</div>
<?php else : ?>
<div class="content">
<div class="entry">
<h2>No posts found. Try a different search?</h2>
</div></div>
<?php endif; ?>
</div>
<?php get_sidebar(); ?>
<?php get_footer(); ?>