Files
bedrock/page-full.php
Ben Word 9da422e008 fixes #166, #196 and #197 - adding full width option and applying in
full width template, thx @johnnypeck!
2012-01-08 11:58:57 -07: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['fullwidth_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(); ?>