Advertisement
Guest User

Untitled

a guest
Apr 12th, 2016
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.77 KB | None | 0 0
  1. <?php
  2. /**
  3. * The Template for displaying all single posts.
  4. *
  5. * @since 1.0.0
  6. */
  7. get_header(); ?>
  8.  
  9. <div class="container">
  10. <div class="row">
  11. <div id="primary" <?php bavotasan_primary_attr(); ?>>
  12. <?php while ( have_posts() ) : the_post(); ?>
  13.  
  14. <?php get_template_part( 'content', get_post_format() ); ?>
  15.  
  16. <?php if ( function_exists( "get_yuzo_related_posts" ) ) { get_yuzo_related_posts(); } ?>
  17. <div id="posts-pagination" class="clearfix">
  18. <h3 class="sr-only"><?php _e( 'Post navigation', 'arcade' ); ?></h3>
  19.  
  20. </div><!-- #posts-pagination -->
  21.  
  22. <?php comments_template( '', true ); ?>
  23.  
  24. <?php endwhile; // end of the loop. ?>
  25. </div>
  26. <?php get_sidebar(); ?>
  27. </div>
  28. </div>
  29.  
  30. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement