Advertisement
Ronnie_Fantastic

My theme page code

Oct 26th, 2012
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.93 KB | None | 0 0
  1. <?php get_header(); ?>
  2. <div class="art-layout-wrapper">
  3. <div class="art-content-layout">
  4. <div class="art-content-layout-row">
  5. <div class="art-layout-cell art-content">
  6. <?php get_sidebar('top'); ?>
  7. <?php
  8. if(have_posts()) {
  9.  
  10. /* Start the Loop */
  11. while (have_posts()) {
  12. the_post();
  13. get_template_part('content', 'page');
  14. /* Display comments */
  15. if ( theme_get_option('theme_allow_comments')) {
  16. comments_template();
  17. }
  18. }
  19.  
  20. } else {
  21.  
  22. theme_404_content();
  23.  
  24. }
  25. ?>
  26. <?php get_sidebar('bottom'); ?>
  27. <div class="cleared"></div>
  28. </div>
  29. <div class="art-layout-cell art-sidebar1">
  30. <?php get_sidebar('default'); ?>
  31. <div class="cleared"></div>
  32. </div>
  33. </div>
  34. </div>
  35. </div>
  36. <div class="cleared"></div>
  37. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement