-
+ C71110F12FDE3FF9FB14D3E30ED6DC689C1E726E8B02847626A97B9718186A11AE9B84B63DF5DD00EF0FCA8A55F44C50AFDC0341A1125C3720B839F14189EEAD
mp-wp/wp-content/themes/default/single.php
(0 . 0)(1 . 73)
68211 <?php
68212 /**
68213 * @package WordPress
68214 * @subpackage Default_Theme
68215 */
68216
68217 get_header();
68218 ?>
68219
68220 <div id="content" class="widecolumn">
68221
68222 <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
68223
68224 <div class="navigation">
68225 <div class="alignleft"><?php previous_post_link('« %link') ?></div>
68226 <div class="alignright"><?php next_post_link('%link »') ?></div>
68227 </div>
68228
68229 <div <?php post_class() ?> id="post-<?php the_ID(); ?>">
68230 <h2><?php the_title(); ?></h2>
68231
68232 <div class="entry">
68233 <?php the_content('<p class="serif">Read the rest of this entry »</p>'); ?>
68234
68235 <?php wp_link_pages(array('before' => '<p><strong>Pages:</strong> ', 'after' => '</p>', 'next_or_number' => 'number')); ?>
68236 <?php the_tags( '<p>Tags: ', ', ', '</p>'); ?>
68237
68238 <p class="postmetadata alt">
68239 <small>
68240 This entry was posted
68241 <?php /* This is commented, because it requires a little adjusting sometimes.
68242 You'll need to download this plugin, and follow the instructions:
68243 http://binarybonsai.com/archives/2004/08/17/time-since-plugin/ */
68244 /* $entry_datetime = abs(strtotime($post->post_date) - (60*120)); echo time_since($entry_datetime); echo ' ago'; */ ?>
68245 on <?php the_time('l, F jS, Y') ?> at <?php the_time() ?>
68246 and is filed under <?php the_category(', ') ?>.
68247 You can follow any responses to this entry through the <?php post_comments_feed_link('RSS 2.0'); ?> feed.
68248
68249 <?php if (('open' == $post-> comment_status) && ('open' == $post->ping_status)) {
68250 // Both Comments and Pings are open ?>
68251 You can <a href="#respond">leave a response</a>, or <a href="<?php trackback_url(); ?>" rel="trackback">trackback</a> from your own site.
68252
68253 <?php } elseif (!('open' == $post-> comment_status) && ('open' == $post->ping_status)) {
68254 // Only Pings are Open ?>
68255 Responses are currently closed, but you can <a href="<?php trackback_url(); ?> " rel="trackback">trackback</a> from your own site.
68256
68257 <?php } elseif (('open' == $post-> comment_status) && !('open' == $post->ping_status)) {
68258 // Comments are open, Pings are not ?>
68259 You can skip to the end and leave a response. Pinging is currently not allowed.
68260
68261 <?php } elseif (!('open' == $post-> comment_status) && !('open' == $post->ping_status)) {
68262 // Neither Comments, nor Pings are open ?>
68263 Both comments and pings are currently closed.
68264
68265 <?php } edit_post_link('Edit this entry','','.'); ?>
68266
68267 </small>
68268 </p>
68269
68270 </div>
68271 </div>
68272
68273 <?php comments_template(); ?>
68274
68275 <?php endwhile; else: ?>
68276
68277 <p>Sorry, no posts matched your criteria.</p>
68278
68279 <?php endif; ?>
68280
68281 </div>
68282
68283 <?php get_footer(); ?>