Update the HTML "class" system

Improving on the naming convention of our classes with consistency
adjustments. Also creates a better hierarchy (matched pairs) for them.
This commit is contained in:
Matias 2012-08-25 13:57:24 -03:00
parent e8ebbf25fa
commit 752d08afd7
9 changed files with 30 additions and 30 deletions

View file

@ -9,8 +9,8 @@
get_header();
?>
<div id="primary" class="site-content image-attachment">
<div id="content" role="main">
<div id="primary" class="content-area image-attachment">
<div id="content" class="site-content" role="main">
<?php while ( have_posts() ) : the_post(); ?>
@ -105,7 +105,7 @@ get_header();
<?php endwhile; // end of the loop. ?>
</div><!-- #content -->
</div><!-- #primary .site-content .image-attachment -->
</div><!-- #content .site-content -->
</div><!-- #primary .content-area .image-attachment -->
<?php get_footer(); ?>