1. <?php get_header() ?>
  2.  
  3. <div id="container" class="cleared">
  4.     <div id="content-left">
  5.             <?php include('sidebar-kategoriat.php'); ?>
  6.     </div>
  7.             <div id="content-catright">
  8.             <h2 class="entry-title">
  9.                 <?php single_cat_title(); ?>
  10.             </h2>
  11.  
  12. <?php while ( have_posts() ) : the_post() ?>
  13.  
  14.             <div id="post-<?php the_ID() ?>" class="<?php sandbox_post_class() ?> post-block" style="border-bottom:1px dotted #c0c0c0;border-right:1px dotted #c0c0c0;padding:0 10px 0 10px;">
  15.                 <h3 class="entry-title" style="font-size:17px !important;padding:0 !important;"><a href="<?php the_permalink() ?>" title="<?php printf( __( 'Permalink to %s', 'sandbox' ), the_title_attribute('echo=0') ) ?>" rel="bookmark"><?php the_title() ?></a></h3>
  16.                 <div class="entry-cantent">
  17.                     <?php the_excerpt(__( 'Read More <span class="meta-nav">&raquo;</span>', 'sandbox' )) ?>
  18.                 </div>
  19.                 <div style="clear:both;"></div>
  20.             </div><!-- .post -->
  21.  
  22. <?php endwhile; ?>
  23.  
  24.             <?php wp_pagenavi(); ?>
  25.  
  26.         </div><!-- #content -->
  27. <?php get_footer() ?>