2012-01-07 03:25:13 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2016-09-27 06:22:06 +00:00
|
|
|
* The template for displaying all pages
|
2012-01-07 03:25:13 +00:00
|
|
|
*
|
|
|
|
* This is the template that displays all pages by default.
|
|
|
|
* Please note that this is the WordPress construct of pages
|
2015-07-01 15:21:44 +00:00
|
|
|
* and that other 'pages' on your WordPress site may use a
|
2012-01-07 03:25:13 +00:00
|
|
|
* different template.
|
|
|
|
*
|
2017-10-29 08:51:29 +00:00
|
|
|
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/
|
2015-07-01 15:21:44 +00:00
|
|
|
*
|
2012-01-07 03:25:13 +00:00
|
|
|
* @package _s
|
|
|
|
*/
|
|
|
|
|
|
|
|
get_header(); ?>
|
|
|
|
|
2013-03-05 00:41:38 +00:00
|
|
|
<div id="primary" class="content-area">
|
2017-06-23 16:41:05 +00:00
|
|
|
<main id="main" class="site-main">
|
2012-01-07 03:25:13 +00:00
|
|
|
|
2015-11-11 21:59:40 +00:00
|
|
|
<?php
|
|
|
|
while ( have_posts() ) : the_post();
|
2012-01-07 03:25:13 +00:00
|
|
|
|
2015-11-11 21:59:40 +00:00
|
|
|
get_template_part( 'template-parts/content', 'page' );
|
2012-01-07 03:25:13 +00:00
|
|
|
|
2015-11-11 21:59:40 +00: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();
|
|
|
|
endif;
|
2012-01-07 03:25:13 +00:00
|
|
|
|
2015-11-11 21:59:40 +00:00
|
|
|
endwhile; // End of the loop.
|
|
|
|
?>
|
2012-01-07 03:25:13 +00:00
|
|
|
|
2013-07-30 19:12:45 +00:00
|
|
|
</main><!-- #main -->
|
2013-03-05 00:41:38 +00:00
|
|
|
</div><!-- #primary -->
|
2012-01-07 03:25:13 +00:00
|
|
|
|
2015-11-11 21:59:40 +00:00
|
|
|
<?php
|
|
|
|
get_sidebar();
|
|
|
|
get_footer();
|