This repository has been archived on 2020-05-08. You can view files and clone it, but cannot push or open issues or pull requests.
_s/page.php

35 lines
838 B
PHP
Raw Normal View History

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(); ?>
<div id="primary" class="content-area">
<div id="content" class="site-content" role="main">
2012-01-07 03:25:13 +00:00
<?php while ( have_posts() ) : the_post(); ?>
2012-01-07 03:25:13 +00:00
<?php get_template_part( 'content', 'page' ); ?>
2012-01-07 03:25:13 +00:00
<?php
// If comments are open or we have at least one comment, load up the comment template
if ( comments_open() || '0' != get_comments_number() )
comments_template();
?>
2012-01-07 03:25:13 +00:00
<?php endwhile; // end of the loop. ?>
2012-01-07 03:25:13 +00:00
</div><!-- #content -->
</div><!-- #primary -->
2012-01-07 03:25:13 +00:00
<?php get_sidebar(); ?>
2013-02-28 16:47:17 +00:00
<?php get_footer(); ?>