2013-07-29 00:55:10 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Template Name: Full Width Page
|
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
* @subpackage Twenty_Fourteen
|
|
|
|
*/
|
|
|
|
|
|
|
|
get_header(); ?>
|
|
|
|
|
|
|
|
<div id="primary" class="content-area">
|
|
|
|
<div id="content" class="site-content full-width" role="main">
|
2013-08-15 05:13:29 +02:00
|
|
|
<?php
|
|
|
|
while ( have_posts() ) :
|
|
|
|
the_post();
|
2013-07-29 00:55:10 +02:00
|
|
|
|
2013-08-15 05:13:29 +02:00
|
|
|
get_template_part( 'content', 'page' );
|
2013-07-29 00:55:10 +02:00
|
|
|
|
2013-08-15 05:13:29 +02:00
|
|
|
// If comments are open or we have at least one comment, load up the comment template.
|
|
|
|
if ( comments_open() || get_comments_number() )
|
|
|
|
comments_template();
|
|
|
|
endwhile;
|
|
|
|
?>
|
|
|
|
</div><!-- #content -->
|
|
|
|
</div><!-- #primary -->
|
2013-07-29 00:55:10 +02:00
|
|
|
|
2013-08-15 05:13:29 +02:00
|
|
|
<?php
|
|
|
|
get_sidebar();
|
|
|
|
get_footer();
|