Guest User

Untitled

a guest
Oct 22nd, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.77 KB | None | 0 0
  1. <?php
  2. /*
  3. Template Name: Page_Full
  4. */
  5. ?>
  6. <?php get_header(); ?>
  7. <div id="content">
  8. <div id="main-content">
  9.  
  10. <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
  11. <div id="post-<?php the_ID(); ?>" class="post">
  12.  
  13. <div class="entry">
  14. <?php the_content(); ?>
  15. </div>
  16. <div class="clear"></div>
  17. </div>
  18. <?php endwhile; else : ?>
  19. <div class="post">
  20. <h2>404 - Not Found</h2>
  21. <p>The page you are looking for is not here.</p>
  22. </div>
  23. <?php endif; ?>
  24. </div>
  25. </div>
  26. <!--content end-->
  27. <!--Popup window-->
  28. <?php include(TEMPLATEPATH.'/popup.php') ?>
  29. </div>
  30. <!--main end-->
  31. </div>
  32. <!--wrapper end-->
  33. <div class="clear"></div>
  34. <?php get_footer(); ?>
Add Comment
Please, Sign In to add comment