File: /home/mmickelson/tfgarchive/wpblogtest1.old/wp-content/themes/uchilla1.0/search.php
<?php get_header(); ?>
<div id="main" class="clear">
<div id="content">
<?php if (have_posts()) : ?>
<h1 class="pagetitle">Search Results <?php if(isset($_REQUEST['s']) && trim($_REQUEST['s'])!=''):?>for: <strong><?=$_REQUEST['s']?></strong> <?php endif; ?></h1>
<div class="navigation">
<div class="alignleft"><?php next_posts_link('« Previous Entries') ?></div>
<div class="alignright"><?php previous_posts_link('Next Entries »') ?></div>
</div>
<?php
while (have_posts()) : the_post();
$image = get_post_meta($post->ID, 'photo', true);
?>
<div class="post clear" id="post-<?php the_ID(); ?>">
<div class="entry-date">
<div class="entry-day"><?php the_time('d'); ?></div>
<div class="entry-month"><?php the_time('M'); ?></div>
<div class="entry-year"><?php the_time('Y'); ?></div>
</div>
<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h2>
<div class="entry-filed">Category: <span class="catposted"><?php the_category(', ') ?></span></div>
<div class="entry-content">
<?php if($image!=''): ?>
<div class="image"><img src="<?=$image?>" alt="<?php the_title(); ?>" /></div>
<?php endif; ?>
<?php the_excerpt(''); ?>
</div>
<div style="clear:both"></div>
<p><a href="<?php the_permalink() ?>" class="more-link">Continue reading »</a> <span class="comments_link"><?php comments_popup_link('No comments', '1 Comment', '% Comments'); ?></span></p>
<?php wp_link_pages();?>
</div>
<?php endwhile; ?>
<div class="navigation">
<div class="alignleft"><?php next_posts_link('« Previous Entries') ?></div>
<div class="alignright"><?php previous_posts_link('Next Entries »') ?></div>
</div>
<?php else : ?>
<h2>Nothing found</h2>
<p class="center">Sorry, but you are looking for something that isn't here.</p>
<p><a href="javascript:history.back(-1)"><strong>« Go back</strong></a></p>
<?php endif; ?>
</div> <!-- end content -->
<?php get_sidebar(); ?>
</div> <!-- end main -->
<?php get_footer(); ?>