-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsingle.php
More file actions
28 lines (20 loc) · 913 Bytes
/
Copy pathsingle.php
File metadata and controls
28 lines (20 loc) · 913 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 get_header(); ?>
<div class="row">
<div class="span8">
<?php if ( have_posts() ):?>
<?php while (have_posts()) : the_post(); ?>
<?php get_template_part('content', null); ?>
<nav class="nav-single">
<h3 class="assistive-text"><?php _e('Post navigation', 'twentytwelve'); ?></h3>
<span class="nav-previous"><?php previous_post_link('%link', '<span class="meta-nav">' . _x('←', 'Previous post link', 'twentytwelve') . '</span> %title'); ?></span>
<span class="nav-next"><?php next_post_link('%link', '%title <span class="meta-nav">' . _x('→', 'Next post link', 'twentytwelve') . '</span>'); ?></span>
</nav><!-- .nav-single -->
<?php comments_template('', true); ?>
<?php endwhile; // end of the loop. ?>
<?php endif; ?>
</div>
<div class="span4">
<?php get_sidebar();?>
</div>
</div>
<?php get_footer(); ?>