1. <?php get_header(); ?>
  2.  
  3. <div class="clear"> </div>
  4. <!-- begin content -->
  5.  
  6. <div class="container_12" id="content">
  7.   <?php get_sidebar(); ?>
  8.   <div id="postWrapper">
  9.     <?php if (have_posts()) : ?>
  10.     <?php while (have_posts()) : the_post(); ?>
  11.     <div class="grid_9" id="post_holder">
  12.       <div id="main_blog">
  13.         <div class="post-title">
  14.           <h3><?php the_title(); ?></h3>
  15.           <!--<span class="post-cat"><?php the_category(', ') ?></span>-->
  16.         </div>
  17.         <div class="post-date"> <span class="post-month">
  18.           <?php the_time('F') ?>
  19.           </span> <span class="post-day">
  20.           <?php the_time('j') ?>,
  21.           </span> <span class="post-year">
  22.           <?php the_time('Y') ?>
  23.           </span></div>
  24.         <!-- blog_post_head -->
  25.        
  26.         <div id="entry">
  27.           <p>
  28.             <?php the_content('Read the rest of this entry &raquo;'); ?>
  29.             <?php wp_link_pages(array('before' => '<p><strong>Pages:</strong></p>')) ?>
  30.           </p>
  31.           <div class="post-comments-expanded">
  32.           <?php comments_template(); ?>
  33.           </div><div class="spacer"></div> </div>
  34.         <!-- excerpt -->
  35.        
  36.         </a> </div>
  37.        
  38.         <!--<div class="grid_7" id="blognavpost">
  39.   <span class="previous-entries">
  40.     <?php previous_post_link('%link') ?>
  41.     </span> <span class="next-entries">
  42.     <?php next_post_link('%link') ?>
  43.     </span>
  44.     </div>-->
  45.     <!-- end main -->
  46.    
  47.     <?php endwhile; ?>
  48.   </div>
  49.   <!-- post_holder -->
  50. </div>
  51. <!-- end main -->
  52.  
  53. </div>
  54. <?php else : ?>
  55. <h2>Not Found</h2>
  56. <p>Sorry, but you are looking for something that isn't here.</p>
  57. </div>
  58. <?php endif; ?>
  59. <!-- end content -->
  60.  
  61. <!-- end content -->
  62. <div class="clear"> </div>
  63. <!-- begin footer -->
  64.  
  65. <?php get_footer(); ?>