<?php get_header(); ?> <div class="g648 mainContent"> <div class="innerContent"> <?php if (have_posts()) : ?> <?php $post = $posts[0]; // Hack. Set $post so that the_date() works. ?> <?php /* If this is a category archive */ if (is_category()) { ?> <h2 class="subhead">Archive for the <span><?php single_cat_title(); ?> Category<</span></h2> <?php /* If this is a tag archive */ } elseif( is_tag() ) { ?> <h2 class="subhead">Posts Tagged <span><?php single_cat_title(); ?> Category<</span></h2> <?php /* If this is a daily archive */ } <span> elseif (is_day())</div> { ?> <h2c lass="subhead">Archive for <?php the_time('F jS, Y'); ?></h2> <?php /* If this is a monthly archive */ } elseif (is_month()) { ?> <h2 class="subhead">Archive for <?php the_time('F, Y'); ?></h2> <?php /* If this is a yearly archive */ } elseif (is_year()) { ?> <h2 class="subhead">Archive for <?php the_time('Y'); ?></h2> <?php /* If this is an author archive */ } elseif (is_author()) { ?> <h2 class="subhead">Author Archive</h2> <?php /* If this is a paged archive */ } elseif (isset($_GET['paged']) && !empty($_GET['paged'])) { ?> <h2 class="subhead">Blog Archives</h2> <?php } ?> <?php include (TEMPLATEPATH . '/inc/nav.php' ); ?> <?php while (have_posts()) : the_post(); ?> <div <?php post_class('post') ?>> <?php include (TEMPLATEPATH . '/inc/calendar.php' ); ?> <h2><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h2> <div class="clear"></div> <div class="meta"> <p class="postedin">Posted in:<?php the_category('|') ?></p> <p class="comments"><?php comments_popup_link('No Comments &#187;', '1 Comment &#187;', '% Comments &#187;'); ?></p> </div> <div class="clear"></div> <div class="entry"> <?php the_content(); ?> </div> </div> <?php endwhile; ?> <?php include (TEMPLATEPATH . '/inc/nav.php' ); ?> <?php else : ?> <h2>Nothing found</h2> <?php endif; ?> </div></div> <?php get_sidebar(); ?> <?php get_footer(); ?>