Sha256: 7500ebd34c48130b2cba3e355edbaabbeb7e1939e11842d8d2a295089e93cde0

Contents?: true

Size: 661 Bytes

Versions: 3

Compression:

Stored size: 661 Bytes

Contents

<?php
/**
 * The single template file.
 *
 * @category  Theme
 * @package   [starter]
 * @author    [Your Name]
 * @copyright 2012 [Your Name]
 */

get_header( get_post_format() );

if ( have_posts() ):
	while ( have_posts() ):
		the_post();

		/* If you want to overload this in a child theme then include a file
		 * called content-single.php and that will be used instead.
		 */
		 get_template_part( 'content', 'single' );

		 /* Display navigation to next/previous pages when applicable */
		 do_action( 'pagination' );

		 comments_template( '', true );
	 endwhile;
else:
	 get_template_part( 'content', 'none' );
endif;

get_footer( get_post_format() );

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
wordpress-starter-0.3 templates/project/single.php
wordpress-starter-0.2 templates/project/single.php
wordpress-starter-0.1 templates/starter/single.php