Skip to content

Instantly share code, notes, and snippets.

Created May 9, 2013 00:54
Show Gist options
  • Save anonymous/9c84ab38919611a22a15 to your computer and use it in GitHub Desktop.
Save anonymous/9c84ab38919611a22a15 to your computer and use it in GitHub Desktop.
single.php for SHutter Muse
<?php
/**
* The Template for displaying all single posts.
*
* @package Gridspace
* @since Gridspace 1.0
*/
get_header(); ?>
<section id="primary">
<?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?>
<?php // gridspace_content_nav( 'nav-above' ); ?>
<?php get_template_part( 'content', get_post_format() ); ?>
<?php gridspace_content_nav( 'nav-below' ); ?>
<?php comments_template( '', true ); ?>
<?php endwhile; // end of the loop. ?>
</section><!-- #primary -->
<?php get_footer(); ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment