1. <?php get_header(); ?>
  2.  
  3.     <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
  4.         <div id="main-content">
  5.             <div <?php post_class() ?> id="post-<?php the_ID(); ?>">
  6.            
  7.            
  8.                 <h2><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h2>
  9.  
  10.                 <?php include (TEMPLATEPATH . '/inc/meta.php' ); ?>
  11.  
  12.                 <div class="entry">
  13.                     <?php the_content(); ?>
  14.                 </div>
  15.  
  16.                 <div class="postmetadata">
  17.                     <?php the_tags('Tags: ', ', ', '<br />'); ?>
  18.                     Posted in <?php the_category(', ') ?> |
  19.                     <?php comments_popup_link('No Comments &#187;', '1 Comment &#187;', '% Comments &#187;'); ?>
  20.                 </div>
  21.            
  22.  
  23.             </div>
  24.         </div>
  25.  
  26.     <?php endwhile; ?>
  27.  
  28.     <?php include (TEMPLATEPATH . '/inc/nav.php' ); ?>
  29.  
  30.     <?php else : ?>
  31.  
  32.         <h2>Not Found</h2>
  33.  
  34.     <?php endif; ?>
  35.  
  36. <?php get_sidebar(); ?>
  37.  
  38. <?php get_footer(); ?>
  39.  
  40.    
  41.     <!-- Don't forget analytics -->
  42.    
  43.     </div><!--END page-wrap-->
  44.    
  45. </body>
  46.  
  47. </html>