Advertisement
marutim

page.php

Nov 7th, 2012
186
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.01 KB | None | 0 0
  1. <?php
  2. /**
  3.  * The full width (default) template for displaying a single page.  
  4.  *
  5.  * @package BTP_Flare_Theme
  6.  */
  7. ?>
  8. <?php get_header(); ?>
  9. <?php the_post(); ?>
  10.  
  11.     <?php get_template_part( 'precontent' ); ?>
  12.    
  13.     <div id="content" class="<?php echo btp_content_get_class(); ?>">
  14.         <div id="content-inner">
  15.             <?php if ( btp_elements_get( 'breadcrumbs' ) ): ?>
  16.                 <?php btp_breadcrumbs_render( btp_breadcrumbs_get() ); ?>
  17.             <?php endif; ?>
  18.             <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
  19.                 <div class="entry-content">
  20.                     <?php the_content(); ?>
  21.                     <?php btp_wp_link_pages(); ?>
  22.                 </div><!-- .entry-content -->
  23.                    
  24.                 <div class="entry-utility">    
  25.                     <?php edit_post_link( __( 'Edit', 'btp_theme' ), '<span class="edit-link">', '</span>' ); ?>
  26.                 </div><!-- .entry-utility -->              
  27.                
  28.                 <?php comments_template( '', true ); ?>
  29.             </article>
  30.            
  31.         </div><!-- #content-inner -->
  32.         <div class="background"><div></div></div>
  33.     </div><!-- #content -->
  34.    
  35. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement