2004-12-30 12:25:15 +01:00
< ? php get_header (); ?>
2004-12-30 12:14:01 +01:00
< div id = " content " class = " narrowcolumn " >
2008-02-20 18:57:53 +01:00
2004-12-30 12:14:01 +01:00
< ? php if ( have_posts ()) : ?>
2007-04-12 06:39:55 +02:00
< ? php $post = $posts [ 0 ]; // Hack. Set $post so that the_date() works. ?>
< ? php /* If this is a category archive */ if ( is_category ()) { ?>
2007-03-26 01:40:36 +02:00
< h2 class = " pagetitle " > Archive for the & #8216;<?php single_cat_title(); ?>’ Category</h2>
2007-04-12 06:39:55 +02:00
< ? php /* If this is a tag archive */ } elseif ( is_tag () ) { ?>
2007-08-30 21:54:46 +02:00
< h2 class = " pagetitle " > Posts Tagged & #8216;<?php single_tag_title(); ?>’</h2>
2004-12-30 12:14:01 +01:00
< ? php /* If this is a daily archive */ } elseif ( is_day ()) { ?>
< h2 class = " pagetitle " > Archive for < ? php the_time ( 'F jS, Y' ); ?> </h2>
2007-04-12 06:39:55 +02:00
< ? php /* If this is a monthly archive */ } elseif ( is_month ()) { ?>
2004-12-30 12:14:01 +01:00
< h2 class = " pagetitle " > Archive for < ? php the_time ( 'F, Y' ); ?> </h2>
2007-04-12 06:39:55 +02:00
< ? php /* If this is a yearly archive */ } elseif ( is_year ()) { ?>
2004-12-30 12:14:01 +01:00
< h2 class = " pagetitle " > Archive for < ? php the_time ( 'Y' ); ?> </h2>
< ? php /* If this is an author archive */ } elseif ( is_author ()) { ?>
< h2 class = " pagetitle " > Author Archive </ h2 >
2007-04-12 06:39:55 +02:00
< ? php /* If this is a paged archive */ } elseif ( isset ( $_GET [ 'paged' ]) && ! empty ( $_GET [ 'paged' ])) { ?>
2004-12-30 12:14:01 +01:00
< h2 class = " pagetitle " > Blog Archives </ h2 >
2007-04-12 06:39:55 +02:00
< ? php } ?>
2004-12-30 12:14:01 +01:00
< div class = " navigation " >
2007-06-08 01:33:06 +02:00
< div class = " alignleft " >< ? php next_posts_link ( '« Older Entries' ) ?> </div>
< div class = " alignright " >< ? php previous_posts_link ( 'Newer Entries »' ) ?> </div>
2004-12-30 12:14:01 +01:00
</ div >
< ? php while ( have_posts ()) : the_post (); ?>
< div class = " post " >
2007-09-19 00:50:59 +02:00
< h3 id = " post-<?php the_ID(); ?> " >< a href = " <?php the_permalink() ?> " rel = " bookmark " title = " Permanent Link to <?php the_title_attribute(); ?> " >< ? php the_title (); ?> </a></h3>
2004-12-30 12:14:01 +01:00
< small >< ? php the_time ( 'l, F jS, Y' ) ?> </small>
2006-02-12 08:53:23 +01:00
2004-12-30 12:14:01 +01:00
< div class = " entry " >
2005-11-07 10:31:05 +01:00
< ? php the_content () ?>
2004-12-30 12:14:01 +01:00
</ div >
2006-02-12 08:53:23 +01:00
2007-03-31 08:16:12 +02:00
< p class = " postmetadata " >< ? php the_tags ( 'Tags: ' , ', ' , '<br />' ); ?> Posted in <?php the_category(', ') ?> | <?php edit_post_link('Edit', '', ' | '); ?> <?php comments_popup_link('No Comments »', '1 Comment »', '% Comments »'); ?></p>
2005-03-07 10:07:40 +01:00
2004-12-30 12:14:01 +01:00
</ div >
2006-02-12 08:53:23 +01:00
2004-12-30 12:14:01 +01:00
< ? php endwhile ; ?>
< div class = " navigation " >
2007-06-08 01:33:06 +02:00
< div class = " alignleft " >< ? php next_posts_link ( '« Older Entries' ) ?> </div>
< div class = " alignright " >< ? php previous_posts_link ( 'Newer Entries »' ) ?> </div>
2004-12-30 12:14:01 +01:00
</ div >
2006-02-12 08:53:23 +01:00
2004-12-30 12:14:01 +01:00
< ? php else : ?>
< h2 class = " center " > Not Found </ h2 >
2004-12-30 12:35:04 +01:00
< ? php include ( TEMPLATEPATH . '/searchform.php' ); ?>
2004-12-30 12:14:01 +01:00
< ? php endif ; ?>
2006-02-12 08:53:23 +01:00
2004-12-30 12:14:01 +01:00
</ div >
2004-12-30 12:25:15 +01:00
< ? php get_sidebar (); ?>
2006-09-07 02:25:48 +02:00
< ? php get_footer (); ?>