2014-08-17 16:55:38 +01:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* The template for displaying full width pages.
|
|
|
|
*
|
|
|
|
* Template Name: Full width
|
|
|
|
*
|
|
|
|
* @package storefront
|
|
|
|
*/
|
|
|
|
|
|
|
|
get_header(); ?>
|
|
|
|
|
|
|
|
<div id="primary" class="content-area">
|
|
|
|
<main id="main" class="site-main" role="main">
|
|
|
|
|
|
|
|
<?php while ( have_posts() ) : the_post(); ?>
|
|
|
|
|
2014-08-22 19:29:14 +01:00
|
|
|
<?php
|
|
|
|
do_action( 'storefront_page_before' );
|
|
|
|
?>
|
|
|
|
|
2014-08-17 16:55:38 +01:00
|
|
|
<?php get_template_part( 'content', 'page' ); ?>
|
|
|
|
|
|
|
|
<?php
|
2014-08-22 19:29:14 +01:00
|
|
|
/**
|
|
|
|
* @hooked storefront_display_comments - 10
|
|
|
|
*/
|
|
|
|
do_action( 'storefront_page_after' );
|
2014-08-17 16:55:38 +01:00
|
|
|
?>
|
|
|
|
|
|
|
|
<?php endwhile; // end of the loop. ?>
|
|
|
|
|
|
|
|
</main><!-- #main -->
|
|
|
|
</div><!-- #primary -->
|
|
|
|
|
|
|
|
<?php get_footer(); ?>
|