Sha256: 447413310fe5858472e9e6319ddcd6d57fd7f80cd625d85b65b4c31cd68a0900

Contents?: true

Size: 694 Bytes

Versions: 3

Compression:

Stored size: 694 Bytes

Contents

<?php
/**
 * The template for displaying all pages.
 *
 * This is the template that displays all pages by default.
 * Please note that this is the WordPress construct of pages
 * and that other 'pages' on your WordPress site will use a
 * different template.
 *
 * @category  Theme
 * @package   [starter]
 * @author    [Your Name]
 * @copyright 2012 [Your Name]
 */

get_header( get_post_format() );

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', 'page' );

	comments_template( '', true );
endwhile;

get_footer( get_post_format() );

Version data entries

3 entries across 3 versions & 1 rubygems

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