updating #main and #sidebar CSS classes to use the new options

This commit is contained in:
Ben Word
2011-05-31 10:48:00 -06:00
parent 15f3f9ce2e
commit 97ed6f4f2d
9 changed files with 18 additions and 18 deletions

View File

@@ -2,7 +2,7 @@
<?php roots_content_before(); ?>
<div id="content" class="<?php echo roots_container_class; ?>">
<?php roots_main_before(); ?>
<div id="main" class="<?php echo get_option('roots_main_class'); ?>" role="main">
<div id="main" class="<?php echo $options['css_main_class']; ?>" role="main">
<div class="container">
<h1><?php _e('Search Results for', 'roots'); ?> <?php echo get_search_query(); ?></h1>
<?php roots_loop_before(); ?>
@@ -12,7 +12,7 @@
</div><!-- /#main -->
<?php roots_main_after(); ?>
<?php roots_sidebar_before(); ?>
<aside id="sidebar" class="<?php echo get_option('roots_sidebar_class'); ?>" role="complementary">
<aside id="sidebar" class="<?php echo $options['css_sidebar_class']; ?>" role="complementary">
<?php roots_sidebar_inside_before(); ?>
<div class="container">
<?php get_sidebar(); ?>