Advertisement
Guest User

Page.php

a guest
Aug 27th, 2012
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.47 KB | None | 0 0
  1. // Header
  2. get_header();
  3.  
  4. the_post();
  5.  
  6. // Featured area (above)
  7. if( themeblvd_config( 'featured' ) ) {
  8. themeblvd_featured_start();
  9. themeblvd_featured( 'page' );
  10. themeblvd_featured_end();
  11. }
  12.  
  13. // Start main area
  14. themeblvd_main_start();
  15. themeblvd_main_top();
  16.  
  17. // Breadcrumbs
  18. themeblvd_breadcrumbs();
  19.  
  20. // Before sidebar+content layout
  21. themeblvd_before_layout();
  22. ?>
  23.  
  24. <div id="sidebar_layout">
  25. <div class="sidebar_layout-inner">
  26. <div class="grid-protection">
  27.  
  28. <?php themeblvd_sidebars( 'left' ); ?>
  29.  
  30. <!-- CONTENT (start) -->
  31.  
  32. <div id="content" role="main">
  33. <div class="inner">
  34. <?php themeblvd_content_top(); ?>
  35. <?php get_template_part( 'content', themeblvd_get_part( 'page' ) ); ?>
  36. <?php themeblvd_page_footer(); ?>
  37. <?php if( themeblvd_supports( 'comments', 'pages' ) ) comments_template( '', true ); ?>
  38. </div><!-- .inner (end) -->
  39. </div><!-- #content (end) -->
  40.  
  41. <!-- CONTENT (end) -->
  42.  
  43. <?php themeblvd_sidebars( 'right' ); ?>
  44.  
  45. </div><!-- .grid-protection (end) -->
  46. </div><!-- .sidebar_layout-inner (end) -->
  47. </div><!-- .sidebar-layout-wrapper (end) -->
  48.  
  49. <?php
  50. // End main area
  51. themeblvd_main_bottom();
  52. themeblvd_main_end();
  53.  
  54. // Featured area (below)
  55. if( themeblvd_config( 'featured_below' ) ) {
  56. themeblvd_featured_below_start();
  57. themeblvd_featured_below( 'page' );
  58. themeblvd_featured_below_end();
  59. }
  60.  
  61. // Footer
  62. get_footer();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement