|
1 <?php |
|
2 /** |
|
3 * The template for displaying posts in the Image Post Format on index and archive pages |
|
4 * |
|
5 * Learn more: http://codex.wordpress.org/Post_Formats |
|
6 * |
|
7 * @package WordPress |
|
8 * @subpackage Twenty_Eleven |
|
9 * @since Twenty Eleven 1.0 |
|
10 */ |
|
11 ?> |
|
12 <article id="post-<?php the_ID(); ?>" <?php post_class( 'indexed' ); ?>> |
|
13 <header class="entry-header"> |
|
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( 'Image', 'twentyeleven' ); ?></h3> |
|
17 </hgroup> |
|
18 |
|
19 <?php if ( comments_open() && ! post_password_required() ) : ?> |
|
20 <div class="comments-link"> |
|
21 <?php comments_popup_link( '<span class="leave-reply">' . __( "Reply", 'twentyeleven' ) . '</span>', _x( '1', 'comments number', 'twentyeleven' ), _x( '%', 'comments number', 'twentyeleven' ) ); ?> |
|
22 </div> |
|
23 <?php endif; ?> |
|
24 </header><!-- .entry-header --> |
|
25 |
|
26 <div class="entry-content"> |
|
27 <?php the_content( __( 'Continue reading <span class="meta-nav">→</span>', 'twentyeleven' ) ); ?> |
|
28 <?php wp_link_pages( array( 'before' => '<div class="page-link"><span>' . __( 'Pages:', 'twentyeleven' ) . '</span>', 'after' => '</div>' ) ); ?> |
|
29 </div><!-- .entry-content --> |
|
30 |
|
31 <footer class="entry-meta"> |
|
32 <div class="entry-meta"> |
|
33 <?php |
|
34 printf( __( '<a href="%1$s" rel="bookmark"><time class="entry-date" datetime="%2$s" pubdate>%3$s</time></a><span class="by-author"> <span class="sep"> by </span> <span class="author vcard"><a class="url fn n" href="%4$s" title="%5$s" rel="author">%6$s</a></span></span>', 'twentyeleven' ), |
|
35 esc_url( get_permalink() ), |
|
36 get_the_date( 'c' ), |
|
37 get_the_date(), |
|
38 esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ), |
|
39 esc_attr( sprintf( __( 'View all posts by %s', 'twentyeleven' ), get_the_author() ) ), |
|
40 get_the_author() |
|
41 ); |
|
42 ?> |
|
43 </div><!-- .entry-meta --> |
|
44 <div class="entry-meta"> |
|
45 <?php |
|
46 /* translators: used between list items, there is a space after the comma */ |
|
47 $categories_list = get_the_category_list( __( ', ', 'twentyeleven' ) ); |
|
48 if ( $categories_list ): |
|
49 ?> |
|
50 <span class="cat-links"> |
|
51 <?php printf( __( '<span class="%1$s">Posted in</span> %2$s', 'twentyeleven' ), 'entry-utility-prep entry-utility-prep-cat-links', $categories_list ); ?> |
|
52 </span> |
|
53 <?php endif; // End if categories ?> |
|
54 <?php |
|
55 /* translators: used between list items, there is a space after the comma */ |
|
56 $tags_list = get_the_tag_list( '', __( ', ', 'twentyeleven' ) ); |
|
57 if ( $tags_list ): ?> |
|
58 <span class="tag-links"> |
|
59 <?php printf( __( '<span class="%1$s">Tagged</span> %2$s', 'twentyeleven' ), 'entry-utility-prep entry-utility-prep-tag-links', $tags_list ); ?> |
|
60 </span> |
|
61 <?php endif; // End if $tags_list ?> |
|
62 |
|
63 <?php if ( comments_open() ) : ?> |
|
64 <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> |
|
65 <?php endif; // End if comments_open() ?> |
|
66 </div><!-- .entry-meta --> |
|
67 |
|
68 <?php edit_post_link( __( 'Edit', 'twentyeleven' ), '<span class="edit-link">', '</span>' ); ?> |
|
69 </footer><!-- #entry-meta --> |
|
70 </article><!-- #post-<?php the_ID(); ?> --> |