Advertisement
jbrewlet

Page Template

Aug 29th, 2011
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.90 KB | None | 0 0
  1. <?php get_header(); ?>
  2. <div id="bd" class="yui-navset">
  3.  
  4. <div id="yui-main">
  5. <div class="yui-b" >
  6. <div class="yui-g">
  7.  
  8. <!-- item -->
  9. <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
  10. <div class="item entry" id="post-<?php the_ID(); ?>">
  11. <div class="itemhead">
  12. <h3><?php the_title(); ?></h3>
  13. </div>
  14. <div class="storycontent">
  15.  
  16. <?php the_content(); ?>
  17.  
  18. <?php wp_link_pages(array('before' => '<p><strong>Pages:</strong> ', 'after' => '</p>', 'next_or_number' => 'number')); ?>
  19.  
  20. </div>
  21. </div>
  22. <?php edit_post_link('Edit this entry.', '<p>', '</p>'); ?>
  23. <!-- end item -->
  24.  
  25. <?php endwhile; ?>
  26. <?php endif; ?>
  27. <!-- end content -->
  28. <!-- 2nd sidebar -->
  29.  
  30. <!-- end 2nd sidebar -->
  31. </div>
  32. </div>
  33. </div>
  34. <div class="yui-b" id="secondary">
  35.  
  36. <?php get_sidebar(); ?>
  37.  
  38. </div>
  39. </div>
  40. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement