File: C:/xampp/htdocs/wordpress/wp-content/themes/grey-matter/search.php
<?php get_header(); ?>
<!-- CONTENT -->
<div id="content">
<?php if (have_posts()) : ?>
<h1 class="pagetitle"><?php _e('Search Results','grey_matter'); ?></h1>
<?php while (have_posts()) : the_post(); ?>
<h1><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php _e('Read the whole post','grey_matter'); ?>"><?php the_title(); ?></a></h1>
<?php the_excerpt(); ?>
<div id="postmeta">
<?php include("inc.postmeta.php"); ?>
</div>
<?php endwhile; ?>
<div id="navigation">
<div class="left"><?php next_posts_link(__('« Older Entries','grey_matter')) ?></div>
<div class="right"><?php previous_posts_link(__('Newer Entries »','grey_matter')) ?></div>
</div>
<?php else : ?>
<h1 class="pagetitle"><?php _e('No posts found','grey_matter'); ?></h1>
<p><?php _e('Please try a different search.','grey_matter'); ?></p>
<?php endif; ?>
</div>
<?php get_sidebar(); ?>
<!-- /CONTENT -->
<?php get_footer(); ?>