Sha256: c8ead595d6a60f2aa69c7eb78ed1eb29dbdbe7c6c4eab60091a365e7ad02f0c5
Contents?: true
Size: 663 Bytes
Versions: 1
Compression:
Stored size: 663 Bytes
Contents
<?php /** * The single template file. * * @category Theme * @package [bootstrap] * @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
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
wordpress-starter-0.3 | templates/bootstrap/single.php |