<?php get_header(); ?> <?php get_sidebar(); ?> <hr /> <div id="content"> <?php if (have_posts()) : while (have_posts()) : the_post(); ?> <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>> <h2> <?php if ( $post->post_parent ) { ?><a href="<?php echo esc_url( get_permalink($post->post_parent) ); ?>" rev="attachment"><?php echo esc_html( get_the_title($post->post_parent) ); ?></a> » <?php } ?><?php the_title(); ?></h2> <div class="meta"> <?php edit_post_link(__('Edit This','greenmarinee')); ?> </div> <div class="main"> <p class="attachment"><a href="<?php echo esc_url( wp_get_attachment_url($post->ID) ); ?>"><?php echo wp_get_attachment_image( $post->ID, 'auto' ); ?></a></p> <div class="caption"><?php if ( !empty($post->post_excerpt) ) the_excerpt(); ?></div> <div class="image-description"><?php if ( !empty($post->post_content) ) the_content(); ?></div> <?php if ( $post->post_parent ) { ?> <div class="navigation"> <div class="alignleft"><?php previous_image_link() ?></div> <div class="alignright"><?php next_image_link() ?></div> </div> <?php } ?> </div> </div> <div class="comments"> <?php comments_popup_link(__('Leave a Comment','greenmarinee'), __('<strong>1</strong> Comment','greenmarinee'), __('<strong>%</strong> Comments','greenmarinee')); ?> </div> <?php comments_template(); ?> <?php endwhile; else: ?> <div class="warning"> <p><?php _e('Sorry, no posts matched your criteria, please try and search again.','greenmarinee'); ?></p> </div> <?php endif; ?> </div> <!-- End float clearing --> </div> <!-- End content --> <?php get_footer(); ?>