Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add missing 'class' comments #20

Merged
merged 1 commit into from Aug 6, 2012
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions 404.php
Expand Up @@ -14,7 +14,7 @@
<article id="post-0" class="post error404 not-found">
<header class="entry-header">
<h1 class="entry-title"><?php _e( 'Oops! That page can&rsquo;t be found.', '_s' ); ?></h1>
</header>
</header><!-- .entry-header -->

<div class="entry-content">
<p><?php _e( 'It looks like nothing was found at this location. Maybe try one of the links below or a search?', '_s' ); ?></p>
Expand All @@ -28,7 +28,7 @@
<ul>
<?php wp_list_categories( array( 'orderby' => 'count', 'order' => 'DESC', 'show_count' => 1, 'title_li' => '', 'number' => 10 ) ); ?>
</ul>
</div>
</div><!-- .widget -->

<?php
/* translators: %1$s: smilie */
Expand All @@ -39,7 +39,7 @@
<?php the_widget( 'WP_Widget_Tag_Cloud' ); ?>

</div><!-- .entry-content -->
</article><!-- #post-0 -->
</article><!-- #post-0 .post .error404 .not-found -->

</div><!-- #content -->
</div><!-- #primary .site-content -->
Expand Down
2 changes: 1 addition & 1 deletion archive.php
Expand Up @@ -65,7 +65,7 @@
echo apply_filters( 'tag_archive_meta', '<div class="taxonomy-description">' . $tag_description . '</div>' );
}
?>
</header>
</header><!-- .page-header -->

<?php rewind_posts(); ?>

Expand Down
6 changes: 3 additions & 3 deletions comments.php
Expand Up @@ -39,7 +39,7 @@
<h1 class="assistive-text"><?php _e( 'Comment navigation', '_s' ); ?></h1>
<div class="nav-previous"><?php previous_comments_link( __( '&larr; Older Comments', '_s' ) ); ?></div>
<div class="nav-next"><?php next_comments_link( __( 'Newer Comments &rarr;', '_s' ) ); ?></div>
</nav>
</nav><!-- #comment-nav-before .site-navigation .comment-navigation -->
<?php endif; // check for comment navigation ?>

<ol class="commentlist">
Expand All @@ -52,14 +52,14 @@
*/
wp_list_comments( array( 'callback' => '_s_comment' ) );
?>
</ol>
</ol><!-- .commentlist -->

<?php if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) : // are there comments to navigate through ?>
<nav role="navigation" id="comment-nav-below" class="site-navigation comment-navigation">
<h1 class="assistive-text"><?php _e( 'Comment navigation', '_s' ); ?></h1>
<div class="nav-previous"><?php previous_comments_link( __( '&larr; Older Comments', '_s' ) ); ?></div>
<div class="nav-next"><?php next_comments_link( __( 'Newer Comments &rarr;', '_s' ) ); ?></div>
</nav>
</nav><!-- #comment-nav-below .site-navigation .comment-navigation -->
<?php endif; // check for comment navigation ?>

<?php endif; // have_comments() ?>
Expand Down
2 changes: 1 addition & 1 deletion content.php
Expand Up @@ -57,5 +57,5 @@
<?php endif; ?>

<?php edit_post_link( __( 'Edit', '_s' ), '<span class="sep"> | </span><span class="edit-link">', '</span>' ); ?>
</footer><!-- #entry-meta -->
</footer><!-- .entry-meta -->
</article><!-- #post-<?php the_ID(); ?> -->
2 changes: 1 addition & 1 deletion header.php
Expand Up @@ -56,7 +56,7 @@
<div class="assistive-text skip-link"><a href="#content" title="<?php esc_attr_e( 'Skip to content', '_s' ); ?>"><?php _e( 'Skip to content', '_s' ); ?></a></div>

<?php wp_nav_menu( array( 'theme_location' => 'primary' ) ); ?>
</nav>
</nav><!-- .site-navigation .main-navigation -->
</header><!-- #masthead .site-header -->

<div id="main">
4 changes: 2 additions & 2 deletions image.php
Expand Up @@ -78,7 +78,7 @@
<?php if ( ! empty( $post->post_excerpt ) ) : ?>
<div class="entry-caption">
<?php the_excerpt(); ?>
</div>
</div><!-- .entry-caption -->
<?php endif; ?>
</div><!-- .entry-attachment -->

Expand Down Expand Up @@ -106,6 +106,6 @@
<?php endwhile; // end of the loop. ?>

</div><!-- #content -->
</div><!-- #primary .site-content -->
</div><!-- #primary .site-content .image-attachment -->

<?php get_footer(); ?>
2 changes: 1 addition & 1 deletion no-results.php
Expand Up @@ -31,4 +31,4 @@

<?php } ?>
</div><!-- .entry-content -->
</article><!-- #post-0 -->
</article><!-- #post-0 .post .no-results .not-found -->
2 changes: 1 addition & 1 deletion search.php
Expand Up @@ -15,7 +15,7 @@

<header class="page-header">
<h1 class="page-title"><?php printf( __( 'Search Results for: %s', '_s' ), '<span>' . get_search_query() . '</span>' ); ?></h1>
</header>
</header><!-- .page-header -->

<?php _s_content_nav( 'nav-above' ); ?>

Expand Down