<?php get_header(); ?>

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

		<div id="post-<?php the_ID(); ?>" class="post">
            <div class="date">
                <?php the_date('d') ?><br />
                <?php the_time('M') ?>
            </div>
            <div class="grid_5 post_info">
                <span class="author">by <?php the_author() ?></span><span class="comments"><?php comments_popup_link('No Comments &#187;', '1 Comment &#187;', '% Comments &#187;'); ?></span>
            </div>
            <div class="clear">
            </div>
			<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>

			<div class="text">
				<?php the_content(' continue reading...'); ?>
			</div>
		</div>
		
	<?php endwhile; ?>
		
	<div class="navigation">
		<div class="navigation_btn older_posts"><?php next_posts_link('<img src="' . get_theme_directory() . '/images/btn_older_posts.gif" alt="older posts" />')  ?> </div>
		<div class="navigation_btn newer_posts"><?php previous_posts_link('<img src="'.get_theme_directory() .'/images/btn_newer_posts.gif" alt="newer posts" />') ?></div>
	</div>
	
	<?php else : ?>

	<h2 class="center">Not Found</h2>
	<p class="center">Sorry, but you are looking for something that isn't here.</p>
	<?php include (TEMPLATEPATH . "/searchform.php"); ?>
	<?php endif; ?>     

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