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-12-03 18:06:11 +01: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(); ?>
|
|
|
|
|
2013-10-30 15:39:10 +01:00
|
|
|
<div id="main-content" class="main-content">
|
|
|
|
|
|
|
|
<?php
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( is_front_page() && twentyfourteen_has_featured_posts() ) {
|
|
|
|
// Include the featured content template.
|
|
|
|
get_template_part( 'featured-content' );
|
|
|
|
}
|
2013-10-30 15:39:10 +01:00
|
|
|
?>
|
2013-07-29 00:55:10 +02:00
|
|
|
<div id="primary" class="content-area">
|
|
|
|
<div id="content" class="site-content" role="main">
|
|
|
|
|
2013-08-15 05:13:29 +02:00
|
|
|
<?php
|
2020-01-29 01:45:18 +01:00
|
|
|
// Start the Loop.
|
2017-12-01 00:11:00 +01:00
|
|
|
while ( have_posts() ) :
|
|
|
|
the_post();
|
2013-07-29 00:55:10 +02:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
// Include the page content template.
|
|
|
|
get_template_part( 'content', 'page' );
|
2013-07-29 00:55:10 +02:00
|
|
|
|
2017-12-01 00:11:00 +01: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();
|
|
|
|
}
|
2013-08-15 05:13:29 +02:00
|
|
|
endwhile;
|
|
|
|
?>
|
2013-07-29 00:55:10 +02:00
|
|
|
|
2013-08-15 05:13:44 +02:00
|
|
|
</div><!-- #content -->
|
|
|
|
</div><!-- #primary -->
|
2013-10-30 15:39:10 +01:00
|
|
|
<?php get_sidebar( 'content' ); ?>
|
|
|
|
</div><!-- #main-content -->
|
2013-07-29 00:55:10 +02:00
|
|
|
|
2013-08-15 05:13:29 +02:00
|
|
|
<?php
|
|
|
|
get_sidebar();
|
|
|
|
get_footer();
|