<?php get_header(); ?>
<div id="inner">
<div id="content-sidebar-wrap">
<div id="content" class="hfeed">
<?php if( function_exists(page2cat_output)) page2cat_output($cat); ?>
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<div class="catbox"> <?php echo get_the_image_link(array('Thumbnail'), 'thumbnail'); ?>
<h3 class="cat-title"> <a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>">
<?php the_title(); ?>
</a></h3>
</div>
<?php endwhile; else: ?>
<h2>Woops...</h2>
<p>Sorry, no posts we're found.</p>
<?php endif; ?>
<br/>
<?php if(function_exists('wp_pagenavi')) { wp_pagenavi(); } ?>
</div>
<?php get_sidebar(); ?>
</div>
</div>
<?php get_footer(); ?>