File: /home/mmickelson/theflexguys.com/baronconstruct/wp-content/themes/monotone/search.php
<?php get_header(); rewind_posts(); ?>
<div class="search">
<?php if (have_posts()) : ?>
<h2>Search Results</h2>
<div class="nav">
<div class="prev"><?php next_posts_link( __( '« Older Entries', 'monotone' ) ); ?></div>
<div class="next"><?php previous_posts_link( __( 'Newer Entries »', 'monotone' ) ); ?></div>
</div>
<ul class="thumbnails">
<?php while ( have_posts() ) : the_post(); ?>
<li id="post-<?php the_ID(); ?>">
<a href="<?php the_permalink() ?>" title="<?php the_title_attribute( array( 'before' => __( 'Permanent Link to', 'monotone' ) . ' ' ) ); ?>"><?php the_thumbnail(); ?></a>
</li>
<?php endwhile; ?>
</ul>
<div class="nav">
<div class="prev"><?php next_posts_link( __( '« Older Entries', 'monotone' ) ); ?></div>
<div class="next"><?php previous_posts_link( __( 'Newer Entries »', 'monotone' ) ); ?></div>
</div>
<?php else : ?>
<h2><?php _e( 'Not Found', 'monotone' ); ?></h2>
<p><?php _e( 'Sorry, but you are looking for something that isn’t here.' ); ?></p>
<?php get_search_form(); ?>
<?php endif; ?>
</div>
<?php get_footer(); ?>