<?php get_header(); ?>
<div class="container" id="main">
<div class="span-15 first" id="content">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<h2><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h2>
<?php the_content(__('Read more'));?>
<?php endwhile; else: ?>
<p><?php _e('Sorry, no posts matched your criteria.'); ?></p><?php endif; ?><br />
</div><!-- /content -->
<?php get_sidebar(); ?>
</div><!-- /main -->
<!-- The main column ends -->
<?php get_footer(); ?>