2008-09-27 11:49:27 +02:00
< ? php
/**
* @ package WordPress
* @ subpackage Default_Theme
*/
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 (); ?>
2008-08-13 23:58:06 +02:00
< div < ? php post_class () ?> >
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 >
2008-10-17 19:00:57 +02:00
< ? php else :
2008-11-09 00:27:49 +01:00
if ( is_category () ) { // If this is a category archive
2008-10-17 19:00:57 +02:00
printf ( " <h2 class='center'>Sorry, but there aren't any posts in the %s category yet.</h2> " , single_cat_title ( '' , false ));
2008-11-09 00:27:49 +01:00
} else if ( is_date () ) { // If this is a date archive
2008-10-17 19:00:57 +02:00
echo ( " <h2>Sorry, but there aren't any posts with this date.</h2> " );
2008-11-09 00:27:49 +01:00
} else if ( is_author () ) { // If this is a category archive
$userdata = get_userdatabylogin ( get_query_var ( 'author_name' ));
printf ( " <h2 class='center'>Sorry, but there aren't any posts by %s yet.</h2> " , $userdata -> display_name );
} else {
2008-10-17 19:00:57 +02:00
echo ( " <h2 class='center'>No posts found.</h2> " );
2008-11-09 00:27:49 +01:00
}
2008-10-17 22:39:56 +02:00
get_search_form ();
2008-10-17 19:00:57 +02:00
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 (); ?>