adding hooks & actions

This commit is contained in:
Ben Word
2011-05-26 00:27:06 -06:00
parent c2f44c8422
commit f3c1b46d18
21 changed files with 238 additions and 77 deletions

View File

@@ -1,15 +1,25 @@
<?php get_header(); ?>
<?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 class="container">
<h1><?php single_cat_title(); ?></h1>
<?php roots_loop_before(); ?>
<?php get_template_part('loop', 'category'); ?>
<?php roots_loop_after(); ?>
</div>
</div><!-- /#main -->
<?php roots_main_after(); ?>
<?php roots_sidebar_before(); ?>
<aside id="sidebar" class="<?php echo get_option('roots_sidebar_class'); ?>" role="complementary">
<?php roots_sidebar_inside_before(); ?>
<div class="container">
<?php get_sidebar(); ?>
</div>
<?php roots_sidebar_inside_after(); ?>
</aside><!-- /#sidebar -->
<?php roots_sidebar_after(); ?>
</div><!-- /#content -->
<?php roots_content_after(); ?>
<?php get_footer(); ?>