Browse Source

removed

who uses this template anyway?
eddiemachado 13 years ago
parent
commit
a3da85f9ab
1 changed files with 0 additions and 46 deletions
  1. 0 46
      image.php

+ 0 - 46
image.php

@@ -1,46 +0,0 @@
-<?php get_header(); ?>
-
-			<div id="content" class="clearfix">
-			
-				<div id="main" class="clearfix">
-
-					<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
-					
-					<article id="post-<?php the_ID(); ?>" <?php post_class('clearfix'); ?>>
-      
-      					<header>
-        					<h1 class="h2"><a href="<?php echo get_permalink($post->post_parent); ?>" rev="attachment"><?php echo get_the_title($post->post_parent); ?></a> &raquo; <?php the_title(); ?></h2>
-      					</header>
-      
-      					<section class="post_content clearfix">
-      						<p class="attachment"><a href="<?php echo wp_get_attachment_url($post->ID); ?>"><?php echo wp_get_attachment_image( $post->ID, 'medium' ); ?></a></p>
-      						<p class="caption"><?php if ( !empty($post->post_excerpt) ) the_excerpt(); // this is the "caption" ?></p>
-
-      						<?php the_content('<p class="serif">Read the rest of this entry &raquo;</p>'); ?>
-      					</section>
-      					
-      					<footer>
-							<nav class="prev-next-links">
-								<ul class="clearfix">
-        							<li><?php previous_image_link() ?></li>
-        							<li><?php next_image_link() ?></li>
-        						</ul>
-      						</nav>
-      					</footer>
-    				</article>
-    				
-    				<?php endwhile; else: ?>
-    				
-    				<div class="help">
-    					<p>Sorry, no attachments matched your criteria.</p>
-    				</div>
-
-					<?php endif; ?>
-
-  				</div> <!-- end #main -->
-  				
-  				<?php get_sidebar(); // sidebar 1 ?>
-  				
-  			</div> <!-- end #content -->
-
-<?php get_footer(); ?>