File: C:/Apache24/htdocs/wp-content/themes/simone/content-page.php
<?php
/**
* The template used for displaying page content in page.php
*
* @package Simone
*/
?>
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<?php
if ( has_post_thumbnail() ) {
echo '<div class="single-post-thumbnail clear">';
echo '<div class="image-shifter">';
the_post_thumbnail();
echo '</div>';
echo '</div>';
}
?>
<header class="entry-header">
<h2 class="entry-title"><?php the_title(); ?></h2>
</header><!-- .entry-header -->
<div class="entry-content">
<?php the_content(); ?>
<?php
wp_link_pages(
array(
'before' => '<div class="page-links">' . __( 'Pages:', 'simone' ),
'after' => '</div>',
)
);
?>
</div><!-- .entry-content -->
<?php edit_post_link( __( 'Edit', 'simone' ), '<footer class="entry-footer"><span class="edit-link">', '</span></footer>' ); ?>
</article><!-- #post-## -->