2008-09-27 11:49:27 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @package WordPress
|
|
|
|
* @subpackage Default_Theme
|
|
|
|
*/
|
|
|
|
|
|
|
|
get_header();
|
|
|
|
?>
|
2005-11-30 23:44:00 +01:00
|
|
|
|
|
|
|
<div id="content" class="widecolumn">
|
2006-02-12 08:53:23 +01:00
|
|
|
|
2005-11-30 23:44:00 +01:00
|
|
|
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
|
2006-02-12 08:53:23 +01:00
|
|
|
|
2005-11-30 23:44:00 +01:00
|
|
|
<div class="post" id="post-<?php the_ID(); ?>">
|
2008-03-11 01:09:14 +01:00
|
|
|
<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>
|
2006-07-26 19:43:41 +02:00
|
|
|
<div class="entry">
|
2008-03-27 01:13:14 +01:00
|
|
|
<p class="attachment"><a href="<?php echo wp_get_attachment_url($post->ID); ?>"><?php echo wp_get_attachment_image( $post->ID, 'medium' ); ?></a></p>
|
2008-09-27 11:49:27 +02:00
|
|
|
<div class="caption"><?php if ( !empty($post->post_excerpt) ) the_excerpt(); // this is the "caption" ?></div>
|
2005-12-13 20:19:56 +01:00
|
|
|
|
2005-11-30 23:44:00 +01:00
|
|
|
<?php the_content('<p class="serif">Read the rest of this entry »</p>'); ?>
|
2006-02-12 08:53:23 +01:00
|
|
|
|
2008-03-11 01:09:14 +01:00
|
|
|
<div class="navigation">
|
|
|
|
<div class="alignleft"><?php previous_image_link() ?></div>
|
|
|
|
<div class="alignright"><?php next_image_link() ?></div>
|
|
|
|
</div>
|
|
|
|
<br class="clear" />
|
|
|
|
|
2005-11-30 23:44:00 +01:00
|
|
|
<p class="postmetadata alt">
|
|
|
|
<small>
|
2008-03-11 01:09:14 +01:00
|
|
|
This entry was posted on <?php the_time('l, F jS, Y') ?> at <?php the_time() ?>
|
2005-11-30 23:44:00 +01:00
|
|
|
and is filed under <?php the_category(', ') ?>.
|
2008-03-26 07:37:19 +01:00
|
|
|
<?php the_taxonomies(); ?>
|
2008-01-31 23:15:49 +01:00
|
|
|
You can follow any responses to this entry through the <?php post_comments_feed_link('RSS 2.0'); ?> feed.
|
2006-02-12 08:53:23 +01:00
|
|
|
|
2009-04-17 07:30:09 +02:00
|
|
|
<?php if ( comments_open() && pings_open() ) {
|
2005-11-30 23:44:00 +01:00
|
|
|
// Both Comments and Pings are open ?>
|
2007-08-30 01:08:44 +02:00
|
|
|
You can <a href="#respond">leave a response</a>, or <a href="<?php trackback_url(); ?>" rel="trackback">trackback</a> from your own site.
|
2006-02-12 08:53:23 +01:00
|
|
|
|
2009-04-17 07:30:09 +02:00
|
|
|
<?php } elseif ( !comments_open() && pings_open() ) {
|
2005-11-30 23:44:00 +01:00
|
|
|
// Only Pings are Open ?>
|
2007-08-30 01:08:44 +02:00
|
|
|
Responses are currently closed, but you can <a href="<?php trackback_url(); ?> " rel="trackback">trackback</a> from your own site.
|
2006-02-12 08:53:23 +01:00
|
|
|
|
2009-04-17 07:30:09 +02:00
|
|
|
<?php } elseif ( comments_open() && !pings_open() ) {
|
2005-11-30 23:44:00 +01:00
|
|
|
// Comments are open, Pings are not ?>
|
|
|
|
You can skip to the end and leave a response. Pinging is currently not allowed.
|
2006-02-12 08:53:23 +01:00
|
|
|
|
2009-04-17 07:30:09 +02:00
|
|
|
<?php } elseif ( !comments_open() && !pings_open() ) {
|
2005-11-30 23:44:00 +01:00
|
|
|
// Neither Comments, nor Pings are open ?>
|
2006-02-12 08:53:23 +01:00
|
|
|
Both comments and pings are currently closed.
|
|
|
|
|
2005-11-30 23:44:00 +01:00
|
|
|
<?php } edit_post_link('Edit this entry.','',''); ?>
|
2006-02-12 08:53:23 +01:00
|
|
|
|
2005-11-30 23:44:00 +01:00
|
|
|
</small>
|
|
|
|
</p>
|
2006-02-12 08:53:23 +01:00
|
|
|
|
2005-11-30 23:44:00 +01:00
|
|
|
</div>
|
2008-03-11 01:09:14 +01:00
|
|
|
|
2005-11-30 23:44:00 +01:00
|
|
|
</div>
|
2006-02-12 08:53:23 +01:00
|
|
|
|
2005-11-30 23:44:00 +01:00
|
|
|
<?php comments_template(); ?>
|
2006-02-12 08:53:23 +01:00
|
|
|
|
2005-11-30 23:44:00 +01:00
|
|
|
<?php endwhile; else: ?>
|
2006-02-12 08:53:23 +01:00
|
|
|
|
2005-11-30 23:44:00 +01:00
|
|
|
<p>Sorry, no attachments matched your criteria.</p>
|
2006-02-12 08:53:23 +01:00
|
|
|
|
2005-11-30 23:44:00 +01:00
|
|
|
<?php endif; ?>
|
2006-02-12 08:53:23 +01:00
|
|
|
|
2005-11-30 23:44:00 +01:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<?php get_footer(); ?>
|