_s: Move away from using <article> for content that is not syndicated.

This commit is contained in:
kobenland 2013-03-01 17:28:18 -08:00
parent 3f85aae174
commit 5905cc3889
4 changed files with 37 additions and 37 deletions

View file

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