forked from binhdo/binarybootstrap
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsingle.php
More file actions
28 lines (21 loc) · 651 Bytes
/
single.php
File metadata and controls
28 lines (21 loc) · 651 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?php
/**
* The Template for displaying all single posts.
*
* @package WordPress
* @subpackage Binary_Bootstrap
* @since Binary Bootstrap 1.0
*/
get_header(); ?>
<div id="primary" class="content-area <?php echo binarybootstrap_primary_class(); ?>">
<div id="content" class="site-content" role="main">
<?php /* The loop */ ?>
<?php while ( have_posts() ) : the_post(); ?>
<?php get_template_part( 'content', get_post_format() ); ?>
<?php binarybootstrap_post_nav(); ?>
<?php comments_template(); ?>
<?php endwhile; ?>
</div><!-- #content -->
</div><!-- #primary -->
<?php get_sidebar(); ?>
<?php get_footer(); ?>