Advertisement
pcather

HR line in Pages

Jun 30th, 2011
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. <?php get_header(); ?>
  2.  
  3. <div id="page-top"></div>
  4.  
  5. <div id="page">
  6.  
  7. <div id="page-left">
  8.  
  9. <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
  10.  
  11. <h1><?php the_title(); ?></h1>
  12. <hr>
  13.  
  14. <?php the_content(__('Read more'));?>
  15.  
  16. <?php endwhile; else: ?>
  17.  
  18. <p><?php _e('Sorry, no posts matched your criteria.'); ?></p><?php endif; ?>
  19.  
  20. </div>
  21.  
  22. <div id="page-right">
  23.  
  24. <?php include(TEMPLATEPATH."/sidebar_page.php");?>
  25.  
  26. </div>
  27.  
  28. <div style="clear:both;"></div>
  29.  
  30. </div>
  31.  
  32. <div id="page-bottom"></div>
  33.  
  34. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement