All pastes #1940373 Raw Edit

category.php

public text v1 · immutable
#1940373 ·published 2010-09-14 09:00 UTC
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('&laquo; Older Entries'); ?> &nbsp;
		<?php previous_posts_link('Newer Entries &raquo;'); ?>
	</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(); ?>