adding hooks & actions
This commit is contained in:
14
index.php
14
index.php
@@ -1,15 +1,23 @@
|
||||
<?php get_header(); ?>
|
||||
<div id="content" class="<?php echo roots_container_class; ?>">
|
||||
<?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>Latest Posts</h1>
|
||||
<h1><?php _e('Latest Posts', 'roots');?></h1>
|
||||
<?php get_template_part('loop', 'index'); ?>
|
||||
</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 -->
|
||||
</div><!-- /#content -->
|
||||
<?php roots_sidebar_after(); ?>
|
||||
</div><!-- /#content -->
|
||||
<?php roots_content_after(); ?>
|
||||
<?php get_footer(); ?>
|
||||
|
||||
Reference in New Issue
Block a user