Advertisement
Guest User

fullpage.php

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