rendered paste body<?php include("header.php"); ?>
<!-- BEGIN content -->
<div id="content">
<h2 class="title">Archive for the <strong><?php single_cat_title(); ?></strong> Category</h2>
<?php if (have_posts()) : ?>
<ul class='category-archive'>
<?php while (have_posts()) : the_post(); ?>
<!-- BEGIN post -->
<li class="post">
<a href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
</li>
<!-- END post -->
<?php endwhile; ?>
</ul>
<p class="postnav">
<?php next_posts_link('« Older Entries'); ?>
<?php previous_posts_link('Newer Entries »'); ?>
</p>
<?php else : ?>
<div class="notfound">
<h2>Not Found</h2>
<p>Sorry, but you are looking for something that is not here.</p>
</div>
<?php endif; ?>
</div>
<!-- END content -->
<?php get_sidebar(); get_footer(); ?>