<?php
get_header();
?>

<div class="contwrap">
 <?php get_sidebar(); ?>
<div class="left">
 
    <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
    <div class="post" id="post-<?php the_ID(); ?>">
      <div class="posttop">
        </div>
        <h1 class="posttitle"><a href="<?php the_permalink() ?>" rel="bookmark">
          <?php the_title(); ?>
          </a></h1>
          
          <div class="indexomment"></div>
        
        <div class="clear"></div>
        <div class="storycontent">
          <?php the_content(__('more...')); ?>
     
        </div>
        
        
         




   
          <?php if(is_single()){ ?>
          
           
          
          
          <?php } ?>
        
        <div class="feedback">
          <?php wp_link_pages(); ?>
          
        </div>
      </div>
     
</div>
      <?php endwhile; else: ?>
      <p class="sorrydialog">
        <?php _e('Sorry, no posts matched your criteria.'); ?>
      </p>
      <?php endif; ?>
      <div class="navigation">
        <?php if(function_exists('wp_pagenavi')) { wp_pagenavi(); } ?>
      </div>
      <!--<?php posts_nav_link('&nbsp;&nbsp;', __('&laquo; Previous Page'), __('Next Page &raquo;')); ?>-->


</div>
</div>
<?php get_footer(); ?>