Advertisement
Avi

page.php

Avi
Mar 24th, 2011
213
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.10 KB | None | 0 0
  1. <?php get_header(); ?>
  2.  
  3. <!-- BEGIN PAGE -->
  4. <div id="page">
  5. <div id="page-inner" class="clearfix">
  6. <div id="content">
  7. <?php if(have_posts()) : ?><?php while(have_posts()) : the_post(); ?>
  8. <div id="post-<?php the_ID(); ?>" class="post clearfix">
  9.  
  10. <h2><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></h2>
  11. <div class="entry">
  12. <?php the_content(); ?>
  13. <?php edit_post_link('Edit', ' &raquo; ', ''); ?>
  14. <?php link_pages('<p><strong>Pages:</strong> ', '</p>', 'number'); ?>
  15. <!-- <?php trackback_rdf(); ?> -->
  16. </div> <!-- end div .entry -->
  17.  
  18. <?php wp_reset_query(); ?>
  19.  
  20. <div class="comments">
  21. <?php comments_template(); ?>
  22. </div> <!-- end div .comments -->
  23.  
  24. </div> <!-- end div .post -->
  25.  
  26. <?php endwhile; ?>
  27. <?php else : ?>
  28. <div class="post">
  29. <h3><?php _e('404 Error&#58; Not Found'); ?></h3>
  30. </div>
  31. <?php endif; ?>
  32.  
  33. </div> <!-- end div #content -->
  34.  
  35. <?php get_sidebar(); ?>
  36. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement