-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsingle.php
More file actions
executable file
·31 lines (28 loc) · 974 Bytes
/
single.php
File metadata and controls
executable file
·31 lines (28 loc) · 974 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
29
30
31
<?php
/**
* Default Post Template
* Description: Post template with a content container and right sidebar.
*
* @package WordPress
* @subpackage BootstrapWP
*/
get_header(); ?>
<?php while (have_posts()) : the_post(); ?>
<?php leonardofs_hero($post->ID)?>
<article class="container post">
<header class="span3 post-title">
<h2><?php the_title();?></h2>
<p class="meta"><?php echo bootstrapwp_posted_on();?></p>
<?php the_tags('<div>Tags: ', ', ', '</div>'); ?>
</header> <!--/.span3 -->
<section role="main" class="span8">
<?php the_content(); ?>
<?php endwhile; // end of the loop. ?>
<hr/>
<?php bootstrapwp_content_nav('nav-below'); ?>
</section><!-- /.span8 -->
<secttion role="secondary" class="offset1 span10">
<?php comments_template(); ?>
</section>
</article><!--/.container -->
<?php get_footer(); ?>