diff options
author | Luke Shumaker <LukeShu@sbcglobal.net> | 2011-11-27 12:23:12 -0500 |
---|---|---|
committer | Luke Shumaker <LukeShu@sbcglobal.net> | 2011-11-27 12:23:12 -0500 |
commit | 8e2064bbd878ac93438a6616cbf4af21a0f41edd (patch) | |
tree | 113cd09cd2dd11d02455d575037dd1f32bb4aaea /page.php |
I'm not planning on maintaining this, I just figured I'd put it in git in
case I ever want it.
This has already been cleaned up a lot.
I might one day do the work to make it a proper child theme (it was forked
too many versions ago for it to be clean), but probably not.
Diffstat (limited to 'page.php')
-rw-r--r-- | page.php | 51 |
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 |