(root)/page.php - Rev 23
Go to most recent revision |
Blame |
Last modification |
View Log
| RSS feed
<?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.
*/
get_header(); ?>
<div id="content">
<?php
the_post();
get_template_part('content', 'page');
if (comments_open()) comments_template('/comments.php', true);
?>
</div><!-- #content -->
<?php get_sidebar(); ?>
<?php get_footer(); ?>