2010-03-29 18:03:15 -04:00
< ? php
/**
2010-05-17 02:32:03 -04:00
* The Template for displaying all single posts .
2010-03-29 18:03:15 -04:00
*
* @ package WordPress
2010-05-16 13:10:21 -04:00
* @ subpackage Twenty_Ten
2010-05-17 02:36:11 -04:00
* @ since Twenty Ten 1.0
2010-03-29 18:03:15 -04:00
*/
?>
2010-02-07 11:16:26 -05:00
< ? php get_header (); ?>
2010-02-08 13:02:23 -05:00
< div id = " container " >
2010-05-10 17:10:12 -04:00
< div id = " content " role = " main " >
2010-02-08 13:02:23 -05:00
2010-05-06 13:34:17 -04:00
< ? php if ( have_posts () ) while ( have_posts () ) : the_post (); ?>
2010-02-07 11:16:26 -05:00
< div id = " nav-above " class = " navigation " >
2010-04-29 01:27:53 -04:00
< div class = " nav-previous " >< ? php previous_post_link ( '%link' , '<span class="meta-nav">' . _x ( '←' , 'Previous post link' , 'twentyten' ) . '</span> %title' ); ?> </div>
< div class = " nav-next " >< ? php next_post_link ( '%link' , '%title <span class="meta-nav">' . _x ( '→' , 'Next post link' , 'twentyten' ) . '</span>' ); ?> </div>
2010-02-07 11:16:26 -05:00
</ div ><!-- #nav-above -->
< div id = " post-<?php the_ID(); ?> " < ? php post_class (); ?> >
< h1 class = " entry-title " >< ? php the_title (); ?> </h1>
2010-02-08 13:02:23 -05:00
2010-02-07 11:16:26 -05:00
< div class = " entry-meta " >
2010-05-16 16:53:36 -04:00
< ? php twentyten_posted_on (); ?>
2010-02-07 11:16:26 -05:00
</ div ><!-- . entry - meta -->
2010-02-08 13:02:23 -05:00
2010-02-07 11:16:26 -05:00
< div class = " entry-content " >
2010-02-13 20:00:22 -05:00
< ? php the_content (); ?>
2010-03-26 01:37:55 -04:00
< ? php wp_link_pages ( array ( 'before' => '<div class="page-link">' . __ ( 'Pages:' , 'twentyten' ), 'after' => '</div>' ) ); ?>
2010-02-07 11:16:26 -05:00
</ div ><!-- . entry - content -->
2010-05-03 15:28:44 -04:00
< ? php if ( get_the_author_meta ( 'description' ) ) : // If a user has filled out their description, show a bio on their entries ?>
2010-02-07 11:16:26 -05:00
< div id = " entry-author-info " >
< div id = " author-avatar " >
2010-03-16 16:17:22 -04:00
< ? php echo get_avatar ( get_the_author_meta ( 'user_email' ), apply_filters ( 'twentyten_author_bio_avatar_size' , 60 ) ); ?>
2010-05-04 03:01:09 -04:00
</ div ><!-- #author-avatar -->
2010-02-07 11:16:26 -05:00
< div id = " author-description " >
2010-05-10 16:30:58 -04:00
< h2 >< ? php printf ( esc_attr__ ( 'About %s' , 'twentyten' ), get_the_author () ); ?> </h2>
2010-03-16 16:17:22 -04:00
< ? php the_author_meta ( 'description' ); ?>
2010-02-07 11:16:26 -05:00
< div id = " author-link " >
2010-05-10 16:30:58 -04:00
< a href = " <?php echo get_author_posts_url( get_the_author_meta( 'ID' ) ); ?> " >
2010-05-26 01:35:14 -04:00
< ? php printf ( __ ( 'View all posts by %s <span class="meta-nav">→</span>' , 'twentyten' ), get_the_author () ); ?>
2010-05-10 16:30:58 -04:00
</ a >
2010-02-08 13:02:23 -05:00
</ div ><!-- #author-link -->
2010-05-04 03:01:09 -04:00
</ div ><!-- #author-description -->
2010-05-21 14:56:27 -04:00
</ div ><!-- #entry-author-info -->
2010-02-07 11:16:26 -05:00
< ? php endif ; ?>
2010-02-08 13:02:23 -05:00
2010-02-07 11:16:26 -05:00
< div class = " entry-utility " >
2010-05-16 16:53:36 -04:00
< ? php twentyten_posted_in (); ?>
2010-05-10 15:06:22 -04:00
< ? php edit_post_link ( __ ( 'Edit' , 'twentyten' ), '<span class="edit-link">' , '</span>' ); ?>
2010-02-08 13:02:23 -05:00
</ div ><!-- . entry - utility -->
2010-05-21 14:56:27 -04:00
</ div ><!-- #post-## -->
2010-02-08 13:02:23 -05:00
2010-02-07 11:16:26 -05:00
< div id = " nav-below " class = " navigation " >
2010-04-29 01:27:53 -04:00
< div class = " nav-previous " >< ? php previous_post_link ( '%link' , '<span class="meta-nav">' . _x ( '←' , 'Previous post link' , 'twentyten' ) . '</span> %title' ); ?> </div>
< div class = " nav-next " >< ? php next_post_link ( '%link' , '%title <span class="meta-nav">' . _x ( '→' , 'Next post link' , 'twentyten' ) . '</span>' ); ?> </div>
2010-02-08 13:02:23 -05:00
</ div ><!-- #nav-below -->
2010-02-07 11:16:26 -05:00
2010-02-13 20:00:22 -05:00
< ? php comments_template ( '' , true ); ?>
2010-02-08 13:02:23 -05:00
2010-05-06 13:34:17 -04:00
< ? php endwhile ; // end of the loop. ?>
2010-02-08 13:02:23 -05:00
</ div ><!-- #content -->
2010-02-07 11:16:26 -05:00
</ div ><!-- #container -->
2010-02-08 13:02:23 -05:00
< ? php get_sidebar (); ?>
2010-03-16 16:17:22 -04:00
< ? php get_footer (); ?>