I'm having trouble with my current site, as I'm wanting to show entire posts instead of a categorized list once clicked on a category. Here's the code in my category.php file. The same happens with my archives. Any help would be great, thanks!
<?php include (TEMPLATEPATH."/header.php"); ?>
<div id="content">
<div id="contentleft">
<h3>Posts related to <?php single_cat_title(); ?></h3>
<?php echo category_description(); ?>
<?php while(have_posts()) : the_post(); ?>
-
<?php the_time('d F Y') ?> - "><b><?php the_title(); ?></b>
<?php the_excerpt(); ?>
<?php endwhile; ?>
<p align="center"><?php posts_nav_link(' — ', __('« newer posts'), __('older posts »')); ?></p>
</div>
<?php include(TEMPLATEPATH."/sidebar.php");?>
</div>
<?php get_footer(); ?>