<?php
get_header(); ?>
<div id="content">
<?php if (have_posts()) : ?>
	<h2 class="pagetitle">Search Results</h2>
	<div class="navigation">
		<div class="alignleft"><?php next_posts_link('&laquo; Older Entries') ?></div>
		<div class="alignright"><?php previous_posts_link('Newer Entries &raquo;') ?></div>
	</div>
	<?php while (have_posts()) : the_post(); ?>
		<div <?php post_class(); ?>>
			<h3 id="post-<?php the_ID(); ?>"><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php printf('Permanent Link to %s', the_title_attribute('echo=0')); ?>"><?php the_title(); ?></a></h3>
			<div class="intro"><?php the_time('l, F jS, Y') ?></div>
			<p class="postmetadata"><?php the_tags('Tags:' . ' ', ', ', '<br />'); ?> <?php printf('Posted in %s', get_the_category_list(', ')); ?> | <?php edit_post_link('Edit', '', ' | '); ?>  <?php comments_popup_link('No Comments &#187;', '1 Comment &#187;', '% Comments &#187;', '', 'Comments Closed' ); ?></p>
		</div>
	<?php endwhile; ?>
	<div class="navigation">
		<div class="alignleft"><?php next_posts_link('&laquo; Older Entries') ?></div>
		<div class="alignright"><?php previous_posts_link('Newer Entries &raquo;') ?></div>
	</div>
<?php else : ?>
	<h2 class="center">No posts found. Try a different search?</h2>
<?php endif; ?>
</div>
<?php get_sidebar(); ?>
<?php get_footer(); ?>