-
+ 3A6BCE23D8B4E928CD34875E3F347BA2818C9E93F7FA1A17C2A29FD709F0C25B9C1E74FF0C623ACC2348B449DADE59D7893D3044A3CDAA32F9DDEE3461B92937
mp-wp/wp-content/themes/default/image.php
(0 . 0)(1 . 70)
67097 <?php
67098 /**
67099 * @package WordPress
67100 * @subpackage Default_Theme
67101 */
67102
67103 get_header();
67104 ?>
67105
67106 <div id="content" class="widecolumn">
67107
67108 <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
67109
67110 <div class="post" id="post-<?php the_ID(); ?>">
67111 <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>
67112 <div class="entry">
67113 <p class="attachment"><a href="<?php echo wp_get_attachment_url($post->ID); ?>"><?php echo wp_get_attachment_image( $post->ID, 'medium' ); ?></a></p>
67114 <div class="caption"><?php if ( !empty($post->post_excerpt) ) the_excerpt(); // this is the "caption" ?></div>
67115
67116 <?php the_content('<p class="serif">Read the rest of this entry »</p>'); ?>
67117
67118 <div class="navigation">
67119 <div class="alignleft"><?php previous_image_link() ?></div>
67120 <div class="alignright"><?php next_image_link() ?></div>
67121 </div>
67122 <br class="clear" />
67123
67124 <p class="postmetadata alt">
67125 <small>
67126 This entry was posted on <?php the_time('l, F jS, Y') ?> at <?php the_time() ?>
67127 and is filed under <?php the_category(', ') ?>.
67128 <?php the_taxonomies(); ?>
67129 You can follow any responses to this entry through the <?php post_comments_feed_link('RSS 2.0'); ?> feed.
67130
67131 <?php if (('open' == $post-> comment_status) && ('open' == $post->ping_status)) {
67132 // Both Comments and Pings are open ?>
67133 You can <a href="#respond">leave a response</a>, or <a href="<?php trackback_url(); ?>" rel="trackback">trackback</a> from your own site.
67134
67135 <?php } elseif (!('open' == $post-> comment_status) && ('open' == $post->ping_status)) {
67136 // Only Pings are Open ?>
67137 Responses are currently closed, but you can <a href="<?php trackback_url(); ?> " rel="trackback">trackback</a> from your own site.
67138
67139 <?php } elseif (('open' == $post-> comment_status) && !('open' == $post->ping_status)) {
67140 // Comments are open, Pings are not ?>
67141 You can skip to the end and leave a response. Pinging is currently not allowed.
67142
67143 <?php } elseif (!('open' == $post-> comment_status) && !('open' == $post->ping_status)) {
67144 // Neither Comments, nor Pings are open ?>
67145 Both comments and pings are currently closed.
67146
67147 <?php } edit_post_link('Edit this entry.','',''); ?>
67148
67149 </small>
67150 </p>
67151
67152 </div>
67153
67154 </div>
67155
67156 <?php comments_template(); ?>
67157
67158 <?php endwhile; else: ?>
67159
67160 <p>Sorry, no attachments matched your criteria.</p>
67161
67162 <?php endif; ?>
67163
67164 </div>
67165
67166 <?php get_footer(); ?>