<?php get_header(); ?>
<div class="mainWrap">
<div id="mainContent">
<div class="col1">
<?php if (have_posts()) : ?>
<h2>Search Results</h2>
<?php while (have_posts()) : the_post(); ?>
<div class="post">
<h3 id="post-<?php the_ID(); ?>"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h3>
<p><?php the_time('l, F jS, Y') ?></p>
<p><?php the_tags('Tags: ', ', ', '<br />'); ?> Posted in <?php the_category(', ') ?> | <?php edit_post_link('Edit', '', ' | '); ?> <?php comments_popup_link('No Comments »', '1 Comment »', '% Comments »'); ?></p>
</div>
<?php endwhile; ?>
<ul>
<li><?php next_post_link('« Older Entries') ?></li>
<li><?php previous_post_link('Newer Entries »') ?></li>
</ul>
<?php else : ?>
<h2>No posts found. Try a different search?</h2>
<?php include (TEMPLATEPATH . '/searchform.php'); ?>
<?php endif; ?>
<div class="clear"></div>
</div><!--[END] #col1 -->
<?php get_sidebar(); ?>
<div class="clear"></div>
</div><!--[END] #mainContent -->
</div><!--[END] .mainWrap -->
<?php get_footer(); ?>