1 | <?php |
---|
2 | /** |
---|
3 | * @package WordPress |
---|
4 | * @subpackage Default_Theme |
---|
5 | */ |
---|
6 | |
---|
7 | get_header(); |
---|
8 | ?> |
---|
9 | |
---|
10 | <div id="content" class="widecolumn"> |
---|
11 | |
---|
12 | <?php if (have_posts()) : while (have_posts()) : the_post(); ?> |
---|
13 | |
---|
14 | <div class="post" id="post-<?php the_ID(); ?>"> |
---|
15 | <h2><a href="<?php echo get_permalink($post->post_parent); ?>" rev="attachment"><?php echo get_the_title($post->post_parent); ?></a> » <?php the_title(); ?></h2> |
---|
16 | <div class="entry"> |
---|
17 | <p class="attachment"><a href="<?php echo wp_get_attachment_url($post->ID); ?>"><?php echo wp_get_attachment_image( $post->ID, 'medium' ); ?></a></p> |
---|
18 | <div class="caption"><?php if ( !empty($post->post_excerpt) ) the_excerpt(); // this is the "caption" ?></div> |
---|
19 | |
---|
20 | <?php the_content('<p class="serif">' . __('Read the rest of this entry »', 'kubrick') . '</p>'); ?> |
---|
21 | |
---|
22 | <?php wp_link_pages(array('before' => '<p><strong>' . __('Pages:', 'kubrick') . '</strong> ', 'after' => '</p>', 'next_or_number' => 'number')); ?> |
---|
23 | |
---|
24 | <div class="navigation"> |
---|
25 | <div class="alignleft"><?php previous_image_link() ?></div> |
---|
26 | <div class="alignright"><?php next_image_link() ?></div> |
---|
27 | </div> |
---|
28 | <br class="clear" /> |
---|
29 | |
---|
30 | <p class="postmetadata alt"> |
---|
31 | <small> |
---|
32 | <?php printf(__('This entry was posted on %1$s at %2$s and is filed under %3$s.', 'kubrick'), get_the_time(__('l, F jS, Y', 'kubrick')), get_the_time(), get_the_category_list(', ')); ?> |
---|
33 | <?php the_taxonomies(); ?> |
---|
34 | <?php printf(__("You can follow any responses to this entry through the <a href='%s'>RSS 2.0</a> feed.", "kubrick"), get_post_comments_feed_link()); ?> |
---|
35 | |
---|
36 | <?php if ( comments_open() && pings_open() ) { |
---|
37 | // Both Comments and Pings are open ?> |
---|
38 | <?php printf(__('You can <a href="#respond">leave a response</a>, or <a href="%s" rel="trackback">trackback</a> from your own site.', 'kubrick'), trackback_url(false)); ?> |
---|
39 | |
---|
40 | <?php } elseif ( !comments_open() && pings_open() ) { |
---|
41 | // Only Pings are Open ?> |
---|
42 | <?php printf(__('Responses are currently closed, but you can <a href="%s" rel="trackback">trackback</a> from your own site.', 'kubrick'), trackback_url(false)); ?> |
---|
43 | |
---|
44 | <?php } elseif ( comments_open() && !pings_open() ) { |
---|
45 | // Comments are open, Pings are not ?> |
---|
46 | <?php _e('You can skip to the end and leave a response. Pinging is currently not allowed.', 'kubrick'); ?> |
---|
47 | |
---|
48 | <?php } elseif ( !comments_open() && !pings_open() ) { |
---|
49 | // Neither Comments, nor Pings are open ?> |
---|
50 | <?php _e('Both comments and pings are currently closed.', 'kubrick'); ?> |
---|
51 | |
---|
52 | <?php } edit_post_link('Edit this entry.','',''); ?> |
---|
53 | |
---|
54 | </small> |
---|
55 | </p> |
---|
56 | |
---|
57 | </div> |
---|
58 | |
---|
59 | </div> |
---|
60 | |
---|
61 | <?php comments_template(); ?> |
---|
62 | |
---|
63 | <?php endwhile; else: ?> |
---|
64 | |
---|
65 | <p><?php _e('Sorry, no posts matched your criteria.', 'kubrick'); ?></p> |
---|
66 | |
---|
67 | <?php endif; ?> |
---|
68 | |
---|
69 | </div> |
---|
70 | |
---|
71 | <?php get_footer(); ?> |
---|