2012-01-07 03:25:13 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* The template for displaying all pages.
|
|
|
|
*
|
|
|
|
* This is the template that displays all pages by default.
|
|
|
|
* Please note that this is the WordPress construct of pages
|
|
|
|
* and that other 'pages' on your WordPress site will use a
|
|
|
|
* different template.
|
|
|
|
*
|
|
|
|
* @package _s
|
|
|
|
*/
|
|
|
|
|
|
|
|
get_header(); ?>
|
|
|
|
|
2013-03-05 00:41:38 +00:00
|
|
|
<div id="primary" class="content-area">
|
2013-07-30 19:12:45 +00:00
|
|
|
<main id="main" class="site-main" role="main">
|
2012-01-07 03:25:13 +00:00
|
|
|
|
2013-03-05 00:41:38 +00:00
|
|
|
<?php while ( have_posts() ) : the_post(); ?>
|
2012-01-07 03:25:13 +00:00
|
|
|
|
2015-04-29 01:42:12 +00:00
|
|
|
<?php get_template_part( 'template-parts/content', 'page' ); ?>
|
2012-01-07 03:25:13 +00:00
|
|
|
|
2013-03-05 00:41:38 +00:00
|
|
|
<?php
|
|
|
|
// If comments are open or we have at least one comment, load up the comment template
|
2014-10-15 00:57:29 +00:00
|
|
|
if ( comments_open() || get_comments_number() ) :
|
2013-03-05 00:41:38 +00:00
|
|
|
comments_template();
|
2013-11-24 16:21:43 +00:00
|
|
|
endif;
|
2013-03-05 00:41:38 +00:00
|
|
|
?>
|
2012-01-07 03:25:13 +00:00
|
|
|
|
2013-03-05 00:41:38 +00:00
|
|
|
<?php 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
|
|
|
|
|
|
|
<?php get_sidebar(); ?>
|
2013-02-28 16:47:17 +00:00
|
|
|
<?php get_footer(); ?>
|