_s: Let's keep the `.entry-` namespace for page post types.

This commit is contained in:
kobenland 2013-03-13 13:51:12 -07:00
parent 6f45aadc89
commit f897bc6938
1 changed files with 5 additions and 5 deletions

View File

@ -8,13 +8,13 @@
?>
<section id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<header class="page-header">
<h1 class="page-title"><?php the_title(); ?></h1>
</header><!-- .page-header -->
<header class="entry-header">
<h1 class="entry-title"><?php the_title(); ?></h1>
</header><!-- .entry-header -->
<div class="page-content">
<div class="entry-content">
<?php the_content(); ?>
<?php wp_link_pages( array( 'before' => '<div class="page-links">' . __( 'Pages:', '_s' ), 'after' => '</div>' ) ); ?>
</div><!-- .page-content -->
</div><!-- .entry-content -->
<?php edit_post_link( __( 'Edit', '_s' ), '<footer class="entry-meta"><span class="edit-link">', '</span></footer>' ); ?>
</section><!-- #post-<?php the_ID(); ?> -->