	  	<?php if ( have_posts() ) : ?>
		
        <div class="box">
          <h2><?php echo single_cat_title(); ?></h2>
          <div class="boxinnr">
		  
			<?php while ( have_posts() ) : the_post(); ?>
			
			<div id="post-<?php the_ID(); ?>" <?php post_class(array('listing')) ?>>
				<h1><a href="<?php the_permalink(); ?>" rel="bookmark" title="<?php the_title(); ?>"><?php the_title(); ?></a></h1>
				<div class="datetime">Published on <?php the_time('F j, Y g:i a'); ?></div>
				<?php the_excerpt(); ?>
			</div>
			
			<?php endwhile; ?>
			
		  <!--boxinnr--> 
          </div>
          <!--box--> 
        </div>
        <!--contentlt--> 
		<?php else: // No content ?>
		
		<?php endif; ?>

<div class="post-navigation">
	<?php previous_posts_link() ?>
	<?php next_posts_link() ?>
</div>
