]> scripts.mit.edu Git - autoinstalls/wordpress.git/blobdiff - wp-content/themes/twentyten/loop-page.php
Wordpress 3.1
[autoinstalls/wordpress.git] / wp-content / themes / twentyten / loop-page.php
diff --git a/wp-content/themes/twentyten/loop-page.php b/wp-content/themes/twentyten/loop-page.php
new file mode 100644 (file)
index 0000000..252a1d0
--- /dev/null
@@ -0,0 +1,36 @@
+<?php
+/**
+ * The loop that displays a page.
+ *
+ * The loop displays the posts and the post content.  See
+ * http://codex.wordpress.org/The_Loop to understand it and
+ * http://codex.wordpress.org/Template_Tags to understand
+ * the tags used in it.
+ *
+ * This can be overridden in child themes with loop-page.php.
+ *
+ * @package WordPress
+ * @subpackage Twenty_Ten
+ * @since Twenty Ten 1.2
+ */
+?>
+
+<?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?>
+
+                               <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
+                                       <?php if ( is_front_page() ) { ?>
+                                               <h2 class="entry-title"><?php the_title(); ?></h2>
+                                       <?php } else { ?>
+                                               <h1 class="entry-title"><?php the_title(); ?></h1>
+                                       <?php } ?>
+
+                                       <div class="entry-content">
+                                               <?php the_content(); ?>
+                                               <?php wp_link_pages( array( 'before' => '<div class="page-link">' . __( 'Pages:', 'twentyten' ), 'after' => '</div>' ) ); ?>
+                                               <?php edit_post_link( __( 'Edit', 'twentyten' ), '<span class="edit-link">', '</span>' ); ?>
+                                       </div><!-- .entry-content -->
+                               </div><!-- #post-## -->
+
+                               <?php comments_template( '', true ); ?>
+
+<?php endwhile; // end of the loop. ?>
\ No newline at end of file