Advertisement
Guest User

page.php

a guest
Nov 1st, 2012
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.67 KB | None | 0 0
  1. <?php get_header(); ?>
  2. <div id="container">
  3. <?php if( 'sidebar-content-sidebar' == esplanade_get_option( 'layout' ) ) : ?>
  4. <div class="content-sidebar-wrap">
  5. <?php endif; ?>
  6. <section id="content">
  7. <?php if( have_posts() ) : the_post(); ?>
  8. <article <?php post_class(); ?> id="post-<?php the_ID(); ?>">
  9. <div class="entry">
  10. <?php if( esplanade_get_option( 'breadcrumbs' ) ) : ?>
  11. <div id="location">
  12. <?php esplanade_breadcrumbs(); ?>
  13. </div><!-- #location -->
  14. <?php endif; ?>
  15. <header class="entry-header">
  16. <<?php esplanade_title_tag( 'post' ); ?> class="entry-title"><?php the_title(); ?></<?php esplanade_title_tag( 'post' ); ?>>
  17. </header><!-- .entry-header -->
  18. <div class="entry-content">
  19. <?php the_content(); ?>
  20. <div class="clear"></div>
  21. </div><!-- .entry-content -->
  22. <?php wp_link_pages( array( 'before' => '<footer class="entry-utility"><p class="post-pagination">' . __( 'Pages:', 'esplanade' ), 'after' => '</p></footer><!-- .entry-utility -->' ) ); ?>
  23. </div><!-- .entry -->
  24. <?php comments_template(); ?>
  25. </article><!-- .post -->
  26. <?php else : ?>
  27. <?php esplanade_404(); ?>
  28. <?php endif; ?>
  29. </section><!-- #content -->
  30. <?php if( 'sidebar-content-sidebar' == esplanade_get_option( 'layout' ) ) : ?>
  31. <?php get_sidebar( 'left' ); ?>
  32. </div><!-- #content-sidebar-wrap -->
  33. <?php get_sidebar( 'right' ); ?>
  34. <?php elseif( ( 'no-sidebars' != esplanade_get_option( 'layout' ) ) && ( 'full-width' != esplanade_get_option( 'layout' ) ) ) : ?>
  35. <?php get_sidebar(); ?>
  36. <?php endif; ?>
  37. </div><!-- #container -->
  38. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement