]> scripts.mit.edu Git - autoinstalls/wordpress.git/blobdiff - wp-content/themes/default/page.php
WordPress 4.2.2-scripts
[autoinstalls/wordpress.git] / wp-content / themes / default / page.php
index a6e3ca6a2f325a87153aadebad3d159828af1d0b..87b3dd5256f94e1f9b698df53d264e93731a4540 100644 (file)
@@ -1,6 +1,12 @@
-<?php get_header(); ?>
+<?php
+/**
+ * @package WordPress
+ * @subpackage Default_Theme
+ */
 
-       <div id="content" class="narrowcolumn">
+get_header(); ?>
+
+       <div id="content" class="narrowcolumn" role="main">
 
                <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
                <div class="post" id="post-<?php the_ID(); ?>">
                </div>
                <?php endwhile; endif; ?>
        <?php edit_post_link('Edit this entry.', '<p>', '</p>'); ?>
+       
+       <?php comments_template(); ?>
+       
        </div>
 
 <?php get_sidebar(); ?>
 
-<?php get_footer(); ?>
\ No newline at end of file
+<?php get_footer(); ?>