Advertisement
Artisantopia

page.php

May 2nd, 2012
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.92 KB | None | 0 0
  1. <?php
  2. /**
  3. * The template file for pages.
  4. *
  5. * WARNING: This template file is a core part of the
  6. * Theme Blvd WordPress Framework. This framework is
  7. * designed around this file NEVER being altered. It
  8. * is advised that any edits to the way this file
  9. * displays its content be done with via hooks and filters.
  10. *
  11. * @author Jason Bobich
  12. * @copyright Copyright (c) Jason Bobich
  13. * @link http://jasonbobich.com
  14. * @link http://themeblvd.com
  15. * @package Theme Blvd WordPress Framework
  16. */
  17.  
  18. // Header
  19.  
  20. get_header();
  21.  
  22. the_post();
  23.  
  24. // Featured area
  25. if( themeblvd_config( 'featured' ) ) {
  26. themeblvd_featured_start();
  27. themeblvd_featured( 'page' );
  28. themeblvd_featured_end();
  29. }
  30.  
  31. // Start main area
  32. themeblvd_main_start();
  33. themeblvd_main_top();
  34.  
  35. // Breadcrumbs
  36. themeblvd_breadcrumbs();
  37.  
  38. // Before sidebar+content layout
  39. themeblvd_before_layout();
  40. ?>
  41.  
  42. <div id="sidebar_layout">
  43. <div class="sidebar_layout-inner">
  44. <div class="grid-protection">
  45.  
  46. <?php themeblvd_fixed_sidebars( 'left' ); ?>
  47.  
  48. <!-- CONTENT (start) -->
  49. <img src="http://www.mflorapeterson.com/wp-content/uploads/2012/01/header_flora3.jpg">
  50. <div id="content" role="main">
  51. <div class="inner">
  52. <?php themeblvd_content_top(); ?>
  53. <?php get_template_part( 'content', themeblvd_get_part( 'page' ) ); ?>
  54. <?php themeblvd_page_footer(); ?>
  55. <?php if( themeblvd_supports( 'comments', 'pages' ) ) comments_template( '', true ); ?>
  56. </div><!-- .inner (end) -->
  57. </div><!-- #content (end) -->
  58.  
  59. <!-- CONTENT (end) -->
  60.  
  61. <!-- CONTENT (end) -->
  62.  
  63. <?php themeblvd_fixed_sidebars( 'right' ); ?>
  64.  
  65. </div><!-- .grid-protection (end) -->
  66. </div><!-- .sidebar_layout-inner (end) -->
  67. </div><!-- .sidebar-layout-wrapper (end) -->
  68.  
  69. <?php
  70. // End main area
  71. themeblvd_main_bottom();
  72. themeblvd_main_end();
  73.  
  74. // Footer
  75. get_footer();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement