forked from mirror/_s
_s: Let's keep the `.entry-` namespace for page post types.
This commit is contained in:
parent
6f45aadc89
commit
f897bc6938
|
@ -8,13 +8,13 @@
|
||||||
?>
|
?>
|
||||||
|
|
||||||
<section id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
|
<section id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
|
||||||
<header class="page-header">
|
<header class="entry-header">
|
||||||
<h1 class="page-title"><?php the_title(); ?></h1>
|
<h1 class="entry-title"><?php the_title(); ?></h1>
|
||||||
</header><!-- .page-header -->
|
</header><!-- .entry-header -->
|
||||||
|
|
||||||
<div class="page-content">
|
<div class="entry-content">
|
||||||
<?php the_content(); ?>
|
<?php the_content(); ?>
|
||||||
<?php wp_link_pages( array( 'before' => '<div class="page-links">' . __( 'Pages:', '_s' ), 'after' => '</div>' ) ); ?>
|
<?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>' ); ?>
|
<?php edit_post_link( __( 'Edit', '_s' ), '<footer class="entry-meta"><span class="edit-link">', '</span></footer>' ); ?>
|
||||||
</section><!-- #post-<?php the_ID(); ?> -->
|
</section><!-- #post-<?php the_ID(); ?> -->
|
||||||
|
|
Reference in New Issue