-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsingle.php
More file actions
16 lines (16 loc) · 748 Bytes
/
single.php
File metadata and controls
16 lines (16 loc) · 748 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?php get_header(); ?>
<div id="content" class="row">
<div class="twelvecol" role="main">
<?php while ( have_posts() ) : the_post(); ?>
<?php get_template_part( 'content', 'single' ); ?>
<nav id="nav-single">
<span class="prev_slide"><?php next_post_link( '%link', __( '<span class="meta-nav">←</span> Prior Slide', 'presenter' ) ); ?></span>
<span class="next_slide"><?php previous_post_link( '%link', __( 'Next Slide <span class="meta-nav">→</span>', 'presenter' ) ); ?></span>
</nav><!-- #nav-single -->
<div class="elevencol">
<?php comments_template( '', true ); ?>
</div>
<?php endwhile; // end of the loop. ?>
</div><!-- end .twelvecol -->
</div><!-- end .row -->
<?php get_footer(); ?>