<?php 
/**
 *	@description: this file handles the request to defult page template
 *
 */
get_header(); // including the page header ?>
<?php //get_sidebar("left"); ?>
<div id="main" role="main">
	<?php if ( have_posts() ) : ?>
	<?php
			/* Run the loop to output the page.
			 * If you want to overload this in a child theme then include a file
			 * called loop-page.php and that will be used instead.
			 */
			get_template_part( 'loop', 'search' );
	?>
	<?php else : ?>
				<div id="post-0" class="post no-results not-found">
					<div id="banner">
					<h1 class="entry-title"><?php _e( 'Nothing Found', 'nmw' ); ?></h1>
					</div>
					<div class="entry-content">
						<p><?php _e( 'Sorry, but nothing matched your search criteria. Please try again with some different keywords.', 'twentyten' ); ?></p>
						<p><?php get_search_form(); ?></p>
					</div><!-- .entry-content -->
				</div><!-- #post-0 -->
	<?php endif; ?>
	<br class="clear"/>
	<?php get_template_part( 'footer', 'links' ); ?>
</div>
<?php get_footer();
// including the footer