1. <?php get_header(); ?>
  2.  
  3.     <div id="content">
  4.         <div id="article-wrap">
  5.  
  6.         <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
  7.  
  8.             <h1 class="page-title"><?php the_title(); ?></h1>  
  9.             <div id="page-left">
  10.                 <article <?php post_class() ?> id="post-<?php the_ID(); ?>">
  11.                
  12.                     <div class="entry">
  13.                         <?php echo sharing_display(); ?>
  14.                         <?php the_content(); ?>
  15.                     </div>
  16.        
  17.                     <footer class="postmetadata">
  18.                         <?php the_tags('Tags: ', ', ', '<br />'); ?>
  19.                         Posted in <?php the_category(', ') ?> |
  20.            
  21.                     </footer>
  22.        
  23.                 </article>
  24.        
  25.             </div>
  26.             <?php endwhile; ?>
  27.        
  28.             <?php else : ?>
  29.        
  30.                 <h2 class="page-title">Not Found</h2>
  31.        
  32.             <?php endif; ?>
  33.  
  34. <?php get_sidebar(); ?>
  35.             </div>
  36.  
  37. <?php get_footer(); ?>