Here was the archive code that my old theme used:
<?php get_header(); ?>
<div class=”outer” id=”contentwrap”>
<?php get_sidebars(‘left’); ?>
<div class=”postcont”>
<div id=”content”>
<?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=”pagetitle”>Archive for the ‘<?php single_cat_title(); ?>’ Category</h2>
<?php /* If this is a tag archive */ } elseif( is_tag() ) { ?>
<h2 class=”pagetitle”>Posts Tagged ‘<?php single_tag_title(); ?>’</h2>
<?php /* If this is a daily archive */ } elseif (is_day()) { ?>
<h2 class=”pagetitle”>Archive for <?php the_time(‘F jS, Y’); ?></h2>
<?php /* If this is a monthly archive */ } elseif (is_month()) { ?>
<h2 class=”pagetitle”>Archive for <?php the_time(‘F, Y’); ?></h2>
<?php /* If this is a yearly archive */ } elseif (is_year()) { ?>
<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>
<?php /* If this is a paged archive */ } elseif (isset($_GET[‘paged’]) && !empty($_GET[‘paged’])) { ?>
<h2 class=”pagetitle”>Blog Archives</h2>
<?php } ?>
<?php while (have_posts()) : the_post(); ?>
<h2 class=”title”>” rel=”bookmark” title=”Permanent Link to <?php the_title_attribute(); ?>”><?php the_title(); ?></h2>
<p><div <?php post_class() ?>>
<div class=”postdate”>/images/date.png” />
Posted by <?php the_author_posts_link() ?> on <?php the_time(‘F jS, Y’) ?> /images/folder.png” /> <?php the_category(‘, ‘) ?> /images/comments.png” /> <?php comments_popup_link(‘No Comments »’, ‘1 Comment »’, ‘% Comments »’); ?> <?php if (current_user_can(‘edit_post’, $post->ID)) { ?> /images/edit.png” /> <?php edit_post_link(‘Edit’, ”, ”); } ?></div></p>
<font color=”black”> <div class=”entry”>
<?php the_content(‘Read more »’); ?>
</div></font>
</div>
<?php endwhile; ?>
<div class=”navigation”>
<?php if (function_exists(“pagination”)) {
pagination($additional_loop->max_num_pages);
} ?>
</div>
<?php else :
if ( is_category() ) { // If this is a category archive
printf(“<h2 class=’pagetitle’>Sorry, but there aren’t any posts in the %s category yet.</h2>”, single_cat_title(”,false));
} else if ( is_date() ) { // If this is a date archive
echo(“<h2 class=’pagetitle’>Sorry, but there aren’t any posts with this date.</h2>”);
} else if ( is_author() ) { // If this is a category archive
$userdata = get_userdatabylogin(get_query_var(‘author_name’));
printf(“<h2 class=’pagetitle’>Sorry, but there aren’t any posts by %s yet.</h2>”, $userdata->display_name);
} else {
echo(“<h2 class=’pagetitle’>No posts found.</h2>”);
}
get_search_form();
endif;
?>
</div>
</div>
<?php get_sidebars(‘right’); ?>
</div>
<?php get_footer(); ?>
Here is the Index.php file it used:
<?php get_header(); ?>
<div class=”outer” id=”contentwrap”>
<?php get_sidebars(‘left’); ?>
<div class=”postcont”>
<div id=”content”>
<?php if(is_home()) { include (TEMPLATEPATH . ‘/featured.php’); } ?>
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<h2 class=”title”>” rel=”bookmark” title=”Permanent Link to <?php the_title_attribute(); ?>”><?php the_title(); ?></h2>
<p><div <?php post_class() ?> id=”post-<?php the_ID(); ?>”>
<div class=”postdate”>/images/date.png” />
Posted by <?php the_author_posts_link() ?> on <?php the_time(‘Y-m-d g:iA’) ?> /images/folder.png” /> <?php the_category(‘, ‘) ?> /images/comments.png” /> <?php comments_popup_link(‘No Comments »’, ‘1 Comment »’, ‘% Comments »’); ?> </div></p>
<font color=”black”> <div class=”entry”>
<?php the_content(‘Read more »’); ?>
</div></font>
</div><!–/post-<?php the_ID(); ?>–>
<?php endwhile; ?>
<div class=”navigation”>
<?php if (function_exists(“pagination”)) {
pagination($additional_loop->max_num_pages);
} ?>
</div>
<?php else : ?>
<h2 class=”center”>Not Found</h2>
<p class=”center”>Sorry, but you are looking for something that isn’t here.</p>
<?php get_search_form(); ?>
<?php endif; ?>
</div>
</div>
<?php get_sidebars(‘right’); ?>
</div>
<?php get_footer(); ?>