File: /home/mmickelson/theflexguys.com/baronconstruct/wp-content/themes/rusty-grunge/single.php
<?php
/**
* @package WordPress
* @subpackage Rusty Grunge
*/
get_header(); ?>
<div id="primary">
<div id="content" role="main">
<?php if ( '' != get_header_image() ) : ?>
<div class="header-image">
<img src="<?php header_image(); ?>" width="<?php echo HEADER_IMAGE_WIDTH; ?>" height="<?php echo HEADER_IMAGE_HEIGHT; ?>" alt="" />
</div>
<?php endif; ?>
<?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?>
<nav id="nav-above">
<h1 class="section-heading"><?php _e( 'Post navigation', 'rusty-grunge' ); ?></h1>
<div class="nav-previous"><?php previous_post_link( '%link', '<span class="meta-nav">' . _x( '←', 'Previous post link', 'rusty-grunge' ) . '</span> %title' ); ?></div>
<div class="nav-next"><?php next_post_link( '%link', '%title <span class="meta-nav">' . _x( '→', 'Next post link', 'rusty-grunge' ) . '</span>' ); ?></div>
</nav><!-- #nav-above -->
<?php get_template_part( 'content', 'single' ); ?>
<nav id="nav-below">
<h1 class="section-heading"><?php _e( 'Post navigation', 'rusty-grunge' ); ?></h1>
<div class="nav-previous"><?php previous_post_link( '%link', '<span class="meta-nav">' . _x( '←', 'Previous post link', 'rusty-grunge' ) . '</span> %title' ); ?></div>
<div class="nav-next"><?php next_post_link( '%link', '%title <span class="meta-nav">' . _x( '→', 'Next post link', 'rusty-grunge' ) . '</span>' ); ?></div>
</nav><!-- #nav-below -->
<?php comments_template( '', true ); ?>
<?php endwhile; // end of the loop. ?>
</div><!-- #content -->
</div><!-- #primary -->
<?php get_sidebar(); ?>
<?php get_footer(); ?>