Advertisement
Guest User

page

a guest
Sep 6th, 2012
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.56 KB | None | 0 0
  1. <?php get_header(); ?>
  2. <?php if(get_option('reedwan_page_style') == 'sidebar'): ?>
  3. <!-- Begin Left Sidebar -->
  4. <?php if(get_option('reedwan_sidebar_position') == 'left'): ?>
  5. <div class="left-sidebar grid_4">
  6. <?php get_sidebar(); ?>
  7. </div>
  8. <?php endif; ?>
  9. <!-- End Left Sidebar -->
  10. <!-- Begin Content -->
  11. <div class="single-container page grid_8" >
  12. <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
  13. <div class="single-block">
  14. <div class="page-line-title"><h1 class="inner-title"><?php the_title(); ?></h1></div>
  15. <div class="clear"></div>
  16. <div class="single-content">
  17. <?php the_content(); ?>
  18. </div>
  19. </div>
  20. <?php endwhile; endif; ?>
  21. </div>
  22. <!-- End Content -->
  23. <!-- Begin Right Sidebar -->
  24. <?php if(get_option('reedwan_sidebar_position') == 'right'): ?>
  25. <div class="right-sidebar grid_4">
  26. <?php get_sidebar(); ?>
  27. </div>
  28. <?php endif; ?>
  29. <!-- End Right Sidebar -->
  30. <?php endif; ?>
  31.  
  32. <?php if(get_option('reedwan_page_style') == 'fullwidth'): ?>
  33. <!-- Begin Content -->
  34. <div class="single-container page grid_12" >
  35. <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
  36. <div class="single-block">
  37. <div class="page-line-title"><h1 class="inner-title"><?php the_title(); ?></h1></div>
  38. <div class="clear"></div>
  39. <div class="single-content">
  40. <?php the_content(); ?>
  41. </div>
  42. </div>
  43. <?php endwhile; endif; ?>
  44. </div>
  45. <!-- End Content -->
  46. <?php endif; ?>
  47. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement