Advertisement
Guest User

page.php

a guest
Sep 19th, 2012
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.86 KB | None | 0 0
  1. <?php get_header(); ?>
  2.  
  3.  
  4. <div id="casing">
  5. <div class="incasing">
  6.  
  7.  
  8.  
  9. <div id="content">
  10. <?php if (have_posts()) : ?>
  11. <?php while (have_posts()) : the_post(); ?>
  12.  
  13. <div class="post" id="post-<?php the_ID(); ?>">
  14.  
  15. <div class="title">
  16. <h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h2>
  17. </div>
  18.  
  19.  
  20. <div class="entry">
  21. <?php the_content('Read the rest of this entry &raquo;'); ?>
  22. <div class="clear"></div>
  23.  
  24. </div>
  25. </div>
  26.  
  27. <?php endwhile; else: ?>
  28.  
  29. <h1 class="title">Not Found</h1>
  30. <p>I'm Sorry, you are looking for something that is not here. Try a different search.</p>
  31.  
  32. <?php endif; ?>
  33.  
  34. </div>
  35.  
  36. <?php get_sidebar(); ?>
  37. <div class="clear"></div>
  38. <?php include (TEMPLATEPATH . '/bottom.php'); ?>
  39. </div>
  40.  
  41. <div class="clear"></div>
  42. </div>
  43. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement