<?php get_header(); ?> <div id="post"> <?php if (have_posts()) : ?> <div class="content"> <?php $post = $posts[0]; // Hack. Set $post so that the_date() works. ?> <?php /* If this is a category archive */ if (is_category()) { ?> <h2>Archive for the &#8216;<?php single_cat_title(); ?>&#8217; Category</h2> <?php /* If this is a daily archive */ } elseif (is_day()) { ?> <h2>Archive for <?php the_time('F jS, Y'); ?></h2> <?php /* If this is a monthly archive */ } elseif (is_month()) { ?> <h2>Archive for <?php the_time('F, Y'); ?></h2> <?php /* If this is a yearly archive */ } elseif (is_year()) { ?> <h2>Archive for <?php the_time('Y'); ?></h2> <?php /* If this is an author archive */ } elseif (is_author()) { ?> <h2>Author Archive</h2> <?php /* If this is a paged archive */ } elseif (isset($_GET['paged']) && !empty($_GET['paged'])) { ?> <h2>Blog Archives</h2> <?php } ?> </div> <?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('&laquo; Previous Entries') ?></div> <div class="alignright"><?php previous_posts_link('Next Entries &raquo;') ?></div> </div> <?php else : ?> <h2>Not Found</h2> <?php endif; ?> </div> <?php get_sidebar(); ?> <?php get_footer(); ?>