Files
sage/page-full.php
Scott Walkinshaw 39b0eb190f Whitespace fixes
Replaced all hard tabs with spaces. Removed all trailing whitespace.
2011-10-23 19:29:54 -06:00

20 lines
622 B
PHP

<?php
/*
Template Name: Full Width
*/
get_header(); ?>
<?php roots_content_before(); ?>
<div id="content" class="<?php echo $roots_options['container_class']; ?>">
<?php roots_main_before(); ?>
<div id="main" class="<?php echo $roots_options['container_class']; ?>" role="main">
<div class="container">
<?php roots_loop_before(); ?>
<?php get_template_part('loop', 'page'); ?>
<?php roots_loop_after(); ?>
</div>
</div><!-- /#main -->
<?php roots_main_after(); ?>
</div><!-- /#content -->
<?php roots_content_after(); ?>
<?php get_footer(); ?>