Sha256: 92af55f30ea663bc26cf104699ba7c182065fbc2ade64c0c0ec23b1db9379663

Contents?: true

Size: 871 Bytes

Versions: 5

Compression:

Stored size: 871 Bytes

Contents

<?php
/**
 * The template used for displaying page content
 *
 * @package WordPress
 * @subpackage Twenty_Fourteen
 * @since Twenty Fourteen 1.0
 */
?>

<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
	<?php
		// Page thumbnail and title.
		twentyfourteen_post_thumbnail();
		the_title( '<header class="entry-header"><h1 class="entry-title">', '</h1></header><!-- .entry-header -->' );
	?>

	<div class="entry-content">
		<?php
			the_content();
			wp_link_pages( array(
				'before'      => '<div class="page-links"><span class="page-links-title">' . __( 'Pages:', 'twentyfourteen' ) . '</span>',
				'after'       => '</div>',
				'link_before' => '<span>',
				'link_after'  => '</span>',
			) );

			edit_post_link( __( 'Edit', 'twentyfourteen' ), '<span class="edit-link">', '</span>' );
		?>
	</div><!-- .entry-content -->
</article><!-- #post-## -->

Version data entries

5 entries across 5 versions & 2 rubygems

Version Path
boot-cli-1.0.0 lib/templates/wordpress/wp-content/themes/twentyfourteen/content-page.php
boot-cli-0.3.1 lib/templates/wordpress/wp-content/themes/twentyfourteen/content-page.php
boot-cli-0.3.0 lib/templates/wordpress/wp-content/themes/twentyfourteen/content-page.php
stump-cli-0.1.2 lib/wp/wp-content/themes/twentyfourteen/content-page.php
stump-cli-0.1.1 lib/wp/wp-content/themes/twentyfourteen/content-page.php