<?php get_header(); ?>
<?php $options = get_option('mc_options'); ?>
  <div id="contents" class="clearfix">

   <div id="left_col">
    <div class="content_noside">
<?php if (have_posts()) : ?>

<div id="headline">
  <p><?php _e('Search results for ', 'monochrome'); echo '&#8216;<span id="search_keyword"> ' .$s. ' </span>&#8217;'; ?><span id="search_hit"> - <?php $my_query =& new WP_Query("s=$s & showposts=-1"); echo $my_query->post_count; _e(' hit', 'monochrome'); ?></span></p>	
</div>

<?php while ( have_posts() ) : the_post(); ?>

    <div class="archive_contents">
     <h2><?php the_title(); ?></h2>
     <ul class="archive_meta">
      <li><?php the_time(__('F jS, Y', 'monochrome')) ?></li>
      <li><?php _e('Posted in ','monochrome'); ?><?php the_category(' . '); ?></li>
      <?php if ($options['author']) : ?><li><?php _e('By ','monochrome'); ?><?php the_author_posts_link(); ?></li><?php endif; ?>
      <?php edit_post_link(__('[ EDIT ]', 'monochrome'), '<li class="post-edit">', '</li>' ); ?>
     </ul>
     <p><a href="<?php the_permalink() ?>"><?php the_excerpt_rss(); ?><span class="read-more"><?php _e('[ READ MORE ]', 'monochrome'); ?></span></a></p>
    </div>

<?php endwhile; else: ?>
    <div class="archive_contents">
     <p><?php _e("Sorry, but you are looking for something that isn't here.","monochrome"); ?></p>
    </div>
<?php endif; ?>

    <?php include('navigation.php'); ?>
    </div><!-- #content_noside end -->

   </div><!-- #left_col end -->

   <?php get_sidebar(); ?>

  </div><!-- #contents end -->

  <div id="footer">
<?php get_footer(); ?>
