2013-07-29 00:55:10 +02:00
|
|
|
<?php
|
|
|
|
/**
|
2013-10-12 00:02:11 +02:00
|
|
|
* The template for displaying all pages
|
2013-07-29 00:55:10 +02:00
|
|
|
*
|
|
|
|
* This is the template that displays all pages by default.
|
2013-10-12 00:02:11 +02:00
|
|
|
* Please note that this is the WordPress construct of pages and that other 'pages'
|
|
|
|
* on your WordPress site will use a different template.
|
2013-07-29 00:55:10 +02:00
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
* @subpackage Twenty_Fourteen
|
2013-10-12 00:02:11 +02:00
|
|
|
* @since Twenty Fourteen 1.0
|
2013-07-29 00:55:10 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
get_header(); ?>
|
|
|
|
|
|
|
|
<div id="primary" class="content-area">
|
|
|
|
<div id="content" class="site-content" 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;
|
|
|
|
?>
|
2013-07-29 00:55:10 +02:00
|
|
|
|
2013-08-15 05:13:44 +02:00
|
|
|
</div><!-- #content -->
|
|
|
|
</div><!-- #primary -->
|
2013-07-29 00:55:10 +02:00
|
|
|
|
2013-08-15 05:13:29 +02:00
|
|
|
<?php
|
|
|
|
get_sidebar( 'content' );
|
|
|
|
get_sidebar();
|
|
|
|
get_footer();
|