1. <?php
  2. /**
  3. * The default template for displaying content
  4. *
  5. * @package WordPress
  6. * @subpackage Twenty_Eleven
  7. * @since Twenty Eleven 1.0
  8. */
  9. ?>
  10.  
  11. <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
  12. <header class="entry-header">
  13. <?php if ( is_sticky() ) : ?>
  14. <hgroup>
  15. <h2 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'twentyeleven' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h2>
  16. <h3 class="entry-format"><?php _e( 'Featured', 'twentyeleven' ); ?></h3>
  17. </hgroup>
  18. <?php else : ?>
  19. <h1 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'twentyeleven' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h1>
  20. <?php endif; ?>
  21.  
  22. <?php if ( 'post' == get_post_type() ) : ?>
  23. <div class="entry-meta">
  24. <?php twentyeleven_posted_on(); ?>
  25. </div><!-- .entry-meta -->
  26. <?php endif; ?>
  27.  
  28. <?php if ( comments_open() && ! post_password_required() ) : ?>
  29. <div class="comments-link">
  30. <?php comments_popup_link( '<span class="leave-reply">' . __( 'Reply', 'twentyeleven' ) . '</span>', _x( '1', 'comments number', 'twentyeleven' ), _x( '%', 'comments number', 'twentyeleven' ) ); ?>
  31. </div>
  32. <?php endif; ?>
  33. </header><!-- .entry-header -->
  34.  
  35. <?php if ( is_search() ) : // Only display Excerpts for Search ?>
  36. <div class="entry-summary">
  37. <?php the_excerpt(); ?>
  38. </div><!-- .entry-summary -->
  39. <?php else : ?>
  40. <div class="entry-content">
  41. <?php the_content( __( 'Continue reading <span class="meta-nav">&rarr;</span>', 'twentyeleven' ) ); ?>
  42. <?php wp_link_pages( array( 'before' => '<div class="page-link"><span>' . __( 'Pages:', 'twentyeleven' ) . '</span>', 'after' => '</div>' ) ); ?>
  43. </div><!-- .entry-content -->
  44. <?php endif; ?>
  45.  
  46. <footer class="entry-meta">
  47. <?php $show_sep = false; ?>
  48. <?php if ( 'post' == get_post_type() ) : // Hide category and tag text for pages on Search ?>
  49. <?php
  50. /* translators: used between list items, there is a space after the comma */
  51. $categories_list = get_the_category_list( __( ', ', 'twentyeleven' ) );
  52. if ( $categories_list ):
  53. ?>
  54. <span class="cat-links">
  55. <?php printf( __( '<span class="%1$s">Posted in</span> %2$s', 'twentyeleven' ), 'entry-utility-prep entry-utility-prep-cat-links', $categories_list );
  56. $show_sep = true; ?>
  57. </span>
  58. <?php endif; // End if categories ?>
  59. <?php
  60. /* translators: used between list items, there is a space after the comma */
  61. $tags_list = get_the_tag_list( '', __( ', ', 'twentyeleven' ) );
  62. if ( $tags_list ):
  63. if ( $show_sep ) : ?>
  64. <span class="sep"> | </span>
  65. <?php endif; // End if $show_sep ?>
  66. <span class="tag-links">
  67. <?php printf( __( '<span class="%1$s">Tagged</span> %2$s', 'twentyeleven' ), 'entry-utility-prep entry-utility-prep-tag-links', $tags_list );
  68. $show_sep = true; ?>
  69. </span>
  70. <?php endif; // End if $tags_list ?>
  71. <?php endif; // End if 'post' == get_post_type() ?>
  72.  
  73. <?php if ( comments_open() ) : ?>
  74. <?php if ( $show_sep ) : ?>
  75. <span class="sep"> | </span>
  76. <?php endif; // End if $show_sep ?>
  77. <span class="comments-link"><?php comments_popup_link( '<span class="leave-reply">' . __( 'Leave a reply', 'twentyeleven' ) . '</span>', __( '<b>1</b> Reply', 'twentyeleven' ), __( '<b>%</b> Replies', 'twentyeleven' ) ); ?></span>
  78. <?php endif; // End if comments_open() ?>
  79.  
  80. <?php edit_post_link( __( 'Edit', 'twentyeleven' ), '<span class="edit-link">', '</span>' ); ?>
  81. </footer><!-- #entry-meta -->
  82. </article><!-- #post-<?php the_ID(); ?> -->