-
Notifications
You must be signed in to change notification settings - Fork 0
/
single.php
35 lines (26 loc) · 1.02 KB
/
single.php
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
32
33
34
35
<?php
/**
* The Template for displaying all single posts.
*
* @package WordPress
* @subpackage Twenty_Eleven
* @since Twenty Eleven 1.0
*/
get_header(); ?>
<div id="primary">
<div id="content" role="main">
<?php while ( have_posts() ) : the_post(); ?>
<nav id="nav-single">
<h3 class="assistive-text"><?php _e( 'Post navigation', 'twentyeleven' ); ?></h3>
<span id="nav-prev" class="nav-previous"><?php previous_post_link( '%link', __( '<span class="meta-nav">←</span> Previous', 'twentyeleven' ) ); ?></span>
<span id="nav-next" class="nav-next"><?php next_post_link( '%link', __( 'Next <span class="meta-nav">→</span>', 'twentyeleven' ) ); ?></span>
</nav><!-- #nav-single -->
<div id="slider">
<?php get_template_part( 'content', '' ); ?>
<?php comments_template( '', true ); ?>
</div>
<?php endwhile; // end of the loop. ?>
</div><!-- #content -->
<?php get_widgets(); ?>
</div><!-- #primary -->
<?php get_footer(); ?>