summaryrefslogtreecommitdiff
path: root/page.php
diff options
context:
space:
mode:
Diffstat (limited to 'page.php')
-rw-r--r--page.php51
1 files changed, 51 insertions, 0 deletions
diff --git a/page.php b/page.php
new file mode 100644
index 0000000..789aaf8
--- /dev/null
+++ b/page.php
@@ -0,0 +1,51 @@
+<!-- BEGIN ltsHome: page.php -->
+<?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 WordPress
+ * @subpackage Twenty_Ten
+ * @since Twenty Ten 1.0
+ */
+
+get_header(); ?>
+
+ <div class="main"><a class="nocss" id="content"></a>
+
+<?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?>
+
+ <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
+ <h2 class="entry-title"><?php the_title(); ?></h2>
+ <?php
+ if (
+ is_singular()
+ && has_post_thumbnail( $post->ID )
+ && ( /* $src, $width, $height */ $image = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'post-thumbnail' ) )
+ && $image[1] >= HEADER_IMAGE_WIDTH
+ ) {
+ // Houston, we have a new header image!
+ echo '<div class="entry-banner">';
+ echo get_the_post_thumbnail( $post->ID , null);
+ echo '</div>';
+ }
+ ?>
+ <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>
+ </div>
+
+ <?php comments_template( '', true ); ?>
+
+<?php endwhile; ?>
+
+ </div>
+
+<?php get_footer(); ?>
+<!-- END ltsHome: page.php --> \ No newline at end of file