1. <?php get_header(); ?>
  2.             <section id="leftcont">
  3.                 <?php if (have_posts()) : ?>
  4.                 <?php query_posts("showposts=1"); ?>
  5.                 <?php while (have_posts()) : the_post(); ?>
  6.                
  7.                 <header class="title">
  8.                     <div><h1><span><?php the_title() ?></span></h1></div>
  9.                     <h1 class="readmore"><a href="<?php the_permalink() ?>">Read More &raquo;</a></h1>
  10.                
  11.                     <section class="author">Written by <?php the_author(); ?></section>
  12.                     <section class="date-comments">
  13.                         <span class="date"><?php the_time('F j, Y'); ?></span>
  14.                         <span class="comments"><?php comments_number('0 Comments','1 Comment','% Comments'); ?></span>
  15.                     </section>
  16.                 </header>
  17.                 <?php endwhile; ?>
  18.                 <?php
  19.                     $limit = 1;
  20.                     $paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
  21.                     query_posts('offset=1&showposts=' . $limit . '&paged=' . $paged);
  22.                 ?>
  23.                 <?php while(have_posts()) : the_post(); ?>
  24.                
  25.                 <section class="home-entry">
  26.                    
  27.                     <div class="left">
  28.                         <p class="date"><?php the_time('F j, Y'); ?></p>
  29.                         <p class="comments"><?php comments_number('0 Comments','1 Comment','% Comments'); ?></p>
  30.                         <p class="cat">Categories: <?php the_category(', ');?></p>
  31.                     </div>
  32.                    
  33.                     <h2><a href="<?php the_permalink() ?>" title="<?php the_title() ?>"><?php the_title() ?></a></h2>
  34.                 </section>
  35.                
  36.                 <?php endwhile; ?>
  37.                
  38.                 <section class="pagination">
  39.                     <?php wp_pagenavi(); ?>
  40.                 </section>
  41.                
  42.                 <?php else: ?>
  43.                     <h1>Sorry, there are no posts at this time.</h1>
  44.                 <?php endif; ?>
  45.        
  46.                 <?php wp_reset_query(); ?>
  47.                
  48.             </section>
  49. <?php get_sidebar(); ?>
  50. <?php get_footer(); ?>