Advertisement
ForeXwarrior

Shuttershot fullpage.php

Nov 20th, 2012
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.94 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.  
  12. <div class="topbar">
  13.  
  14. <?php include (TEMPLATEPATH . '/searchform.php'); ?>
  15. </div>
  16.  
  17. <div id="content" style="width:760px;">
  18. <?php if (have_posts()) : ?>
  19. <?php while (have_posts()) : the_post(); ?>
  20.  
  21. <div class="post" id="post-<?php the_ID(); ?>">
  22.  
  23. <div class="title">
  24. <h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h2>
  25. </div>
  26.  
  27. <div class="entry">
  28. <?php the_content('Read the rest of this entry &raquo;'); ?>
  29. <div class="clear"></div>
  30. </div>
  31.  
  32. </div>
  33.  
  34. <?php endwhile; else: ?>
  35.  
  36. <h1 class="title">Not Found</h1>
  37. <p>I'm Sorry, you are looking for something that is not here. Try a different search.</p>
  38.  
  39. <?php endif; ?>
  40.  
  41. </div>
  42.  
  43. <div class="clear"></div>
  44.  
  45. </div>
  46.  
  47. <div class="clear"></div>
  48. </div>
  49. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement