2010-03-30 00:03:15 +02:00
< ? php
/**
* The Template used to display all single posts
*
* @ package WordPress
* @ subpackage Twenty Ten
* @ since 3.0 . 0
*/
?>
2010-02-07 17:16:26 +01:00
< ? php get_header (); ?>
2010-02-08 19:02:23 +01:00
< div id = " container " >
2010-02-07 17:16:26 +01:00
< div id = " content " >
2010-02-08 19:02:23 +01:00
2010-02-07 17:16:26 +01:00
< ? php the_post (); ?>
< div id = " nav-above " class = " navigation " >
2010-02-14 02:00:22 +01:00
< div class = " nav-previous " >< ? php previous_post_link ( '%link' , '<span class="meta-nav">←</span> %title' ); ?> </div>
< div class = " nav-next " >< ? php next_post_link ( '%link' , '%title <span class="meta-nav">→</span>' ); ?> </div>
2010-02-07 17:16:26 +01:00
</ div ><!-- #nav-above -->
< div id = " post-<?php the_ID(); ?> " < ? php post_class (); ?> >
< h1 class = " entry-title " >< ? php the_title (); ?> </h1>
2010-02-08 19:02:23 +01:00
2010-02-07 17:16:26 +01:00
< div class = " entry-meta " >
2010-04-14 00:43:52 +02:00
< span class = " meta-prep meta-prep-author " >< ? php _e ( 'Posted on ' , 'twentyten' ); ?> </span>
2010-02-14 02:00:22 +01:00
< a href = " <?php the_permalink(); ?> " title = " <?php the_time(); ?> " rel = " bookmark " >< span class = " entry-date " >< ? php echo get_the_date (); ?> </span></a>
2010-04-14 00:43:52 +02:00
< span class = " meta-sep " >< ? php _e ( ' by ' , 'twentyten' ); ?> </span>
< span class = " author vcard " >< a class = " url fn n " href = " <?php echo get_author_posts_url( get_the_author_meta( 'ID' ) ); ?> " title = " <?php printf( esc_attr__( 'View all posts by %s', 'twentyten' ), get_the_author() ); ?> " >< ? php the_author (); ?> </a></span>
2010-02-07 17:16:26 +01:00
</ div ><!-- . entry - meta -->
2010-02-08 19:02:23 +01:00
2010-02-07 17:16:26 +01:00
< div class = " entry-content " >
2010-02-14 02:00:22 +01:00
< ? php the_content (); ?>
2010-03-26 06:37:55 +01:00
< ? php wp_link_pages ( array ( 'before' => '<div class="page-link">' . __ ( 'Pages:' , 'twentyten' ), 'after' => '</div>' ) ); ?>
2010-02-07 17:16:26 +01:00
</ div ><!-- . entry - content -->
2010-03-16 21:17:22 +01:00
< ? php if ( get_the_author_meta ( 'description' ) ) : // If a user has filled out their decscription show a bio on their entries ?>
2010-02-07 17:16:26 +01:00
< div id = " entry-author-info " >
< div id = " author-avatar " >
2010-03-16 21:17:22 +01:00
< ? php echo get_avatar ( get_the_author_meta ( 'user_email' ), apply_filters ( 'twentyten_author_bio_avatar_size' , 60 ) ); ?>
2010-02-08 19:02:23 +01:00
</ div ><!-- #author-avatar -->
2010-02-07 17:16:26 +01:00
< div id = " author-description " >
2010-02-14 02:00:22 +01:00
< h2 >< ? php _e ( 'About ' , 'twentyten' ); ?> <?php the_author(); ?></h2>
2010-03-16 21:17:22 +01:00
< ? php the_author_meta ( 'description' ); ?>
2010-02-07 17:16:26 +01:00
< div id = " author-link " >
2010-03-16 21:17:22 +01:00
< a href = " <?php echo get_author_posts_url( get_the_author_meta( 'ID' ) ); ?> " title = " <?php printf( esc_attr__( 'View all posts by %s', 'twentyten' ), get_the_author() ); ?> " >< ? php _e ( 'View all posts by ' , 'twentyten' ); ?> <?php the_author(); ?> →</a>
2010-02-08 19:02:23 +01:00
</ div ><!-- #author-link -->
2010-02-07 17:16:26 +01:00
</ div ><!-- #author-description -->
</ div ><!-- . entry - author - info -->
< ? php endif ; ?>
2010-02-08 19:02:23 +01:00
2010-02-07 17:16:26 +01:00
< div class = " entry-utility " >
2010-02-28 12:43:04 +01:00
< ? php
2010-03-18 22:45:08 +01:00
$tag_list = get_the_tag_list ( '' , ', ' );
2010-02-28 12:43:04 +01:00
if ( '' != $tag_list ) {
$utility_text = __ ( 'This entry was posted in %1$s and tagged %2$s. Bookmark the <a href="%3$s" title="Permalink to %4$s" rel="bookmark">permalink</a>. Follow any comments here with the <a href="%5$s" title="Comments RSS to %4$s" rel="alternate" type="application/rss+xml">RSS feed for this post</a>.' , 'twentyten' );
} else {
$utility_text = __ ( 'This entry was posted in %1$s. Bookmark the <a href="%3$s" title="Permalink to %4$s" rel="bookmark">permalink</a>. Follow any comments here with the <a href="%5$s" title="Comments RSS to %4$s" rel="alternate" type="application/rss+xml">RSS feed for this post</a>.' , 'twentyten' );
}
2010-03-26 20:36:49 +01:00
printf (
2010-02-28 12:43:04 +01:00
$utility_text ,
2010-03-16 21:17:22 +01:00
get_the_category_list ( ', ' ),
2010-02-28 12:43:04 +01:00
$tag_list ,
get_permalink (),
2010-03-16 21:17:22 +01:00
the_title_attribute ( 'echo=0' ),
2010-03-26 20:36:49 +01:00
get_post_comments_feed_link ()
);
2010-02-28 12:43:04 +01:00
?>
2010-02-07 17:16:26 +01:00
2010-04-08 05:13:48 +02:00
< ? php edit_post_link ( __ ( 'Edit' , 'twentyten' ), '<span class="edit-link">' , '</span>' ); ?>
2010-02-08 19:02:23 +01:00
</ div ><!-- . entry - utility -->
</ div ><!-- #post-<?php the_ID(); ?> -->
2010-02-07 17:16:26 +01:00
< div id = " nav-below " class = " navigation " >
2010-02-14 02:00:22 +01:00
< div class = " nav-previous " >< ? php previous_post_link ( '%link' , '<span class="meta-nav">←</span> %title' ); ?> </div>
< div class = " nav-next " >< ? php next_post_link ( '%link' , '%title <span class="meta-nav">→</span>' ); ?> </div>
2010-02-08 19:02:23 +01:00
</ div ><!-- #nav-below -->
2010-02-07 17:16:26 +01:00
2010-02-14 02:00:22 +01:00
< ? php comments_template ( '' , true ); ?>
2010-02-08 19:02:23 +01:00
</ div ><!-- #content -->
2010-02-07 17:16:26 +01:00
</ div ><!-- #container -->
2010-02-08 19:02:23 +01:00
< ? php get_sidebar (); ?>
2010-03-16 21:17:22 +01:00
< ? php get_footer (); ?>