Advertisement
Guest User

Untitled

a guest
Sep 3rd, 2012
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.30 KB | None | 0 0
  1. <?php get_header(); ?>
  2. <?php if( is_front_page() ) : ?>
  3. <?php get_sidebar( 'wide' ); ?>
  4. <?php get_sidebar( 'boxes' ); ?>
  5. <?php endif; ?>
  6. <div id="container">
  7. <section id="content" <?php pinboard_content_class(); ?>>
  8. <?php if( have_posts() ) : the_post(); ?>
  9. <article <?php post_class(); ?> id="post-<?php the_ID(); ?>">
  10. <div class="entry">
  11. <header class="entry-header">
  12. <<?php pinboard_title_tag( 'post' ); ?> class="entry-title"><?php the_title(); ?></<?php pinboard_title_tag( 'post' ); ?>>
  13. </header><!-- .entry-header -->
  14. <div class="entry-content">
  15. <?php the_content(); ?>
  16. <div class="clear"></div>
  17. </div><!-- .entry-content -->
  18. <?php wp_link_pages( array( 'before' => '<footer class="entry-utility"><p class="post-pagination">' . __( 'Pages:', 'pinboard' ), 'after' => '</p></footer><!-- .entry-utility -->' ) ); ?>
  19. </div><!-- .entry -->
  20. <?php comments_template(); ?>
  21. </article><!-- .post -->
  22. <?php else : ?>
  23. <?php pinboard_404(); ?>
  24. <?php endif; ?>
  25. </section><!-- #content -->
  26. <?php if( ( 'no-sidebars' != pinboard_get_option( 'layout' ) ) && ( 'full-width' != pinboard_get_option( 'layout' ) ) ) : ?>
  27. <?php get_sidebar(); ?>
  28. <?php endif; ?>
  29. </div><!-- #container -->
  30. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement