<?php get_header(); ?>
<div id="post">
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div class="content">
<div class="post" id="post-<?php the_ID(); ?>">
<div class="date"><?php the_time('F jS, Y') ?> <!-- by <?php the_author() ?> --> </div>
<div class="entry">
<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h2>
<?php the_content(''); ?>
<div class="more"><a href="<?php the_permalink() ?>" title="Permanent link to <?php the_title(); ?>">Continue reading ...</a></div>
<br />
<i><div class="postmeta">Category: <?php the_category(', ') ?> | Comments: <?php comments_popup_link('0', '1', '%'); ?> <?php edit_post_link('Edit This', ' | ', ''); ?> </div></i>
</div></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 : ?>
<h2>Not Found</h2>
<p>Sorry, but you are looking for something that isn't here.</p>
<?php endif; ?>
</div>
<?php get_sidebar(); ?>
<?php get_footer(); ?>