1. <?php get_header(); ?>
  2. <!-- Container -->
  3.  
  4. <div class="CON">
  5.   <div class="CON_bg">
  6.   <!-- Start SC -->
  7.   <div class="SC">
  8.     <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
  9.     <div class="Post" id="post-<?php the_ID(); ?>">
  10.      <div id="ptitle">
  11.         <?php the_title(); ?>
  12.       </div>
  13.       <div class="clr"></div>
  14.       <div id="pcont"><?php the_content('<p class="serif">Read the rest of this page &raquo;</p>'); ?>
  15.       <?php wp_link_pages(array('before' => '<p><strong>Pages:</strong> ', 'after' => '</p>', 'next_or_number' => 'number')); ?>
  16.     </div>
  17.    
  18.     <?php endwhile; endif; ?>
  19.     <div class="Post">
  20.       <?php edit_post_link('Edit this entry.', '<p class="edit_this">', '</p>'); ?>
  21.     </div>
  22.   </div></div>
  23.   <!-- End SC -->
  24.   <?php include ('sidebar2.php'); ?>
  25.   <div class="clr"></div>
  26. </div></div>
  27. <!-- End CON -->
  28. <?php get_footer(); ?>