<?php
/**
 * The template for displaying 404 pages (not found).
 *
 * @package Flask
 */

get_header(); ?>

	<div id="primary" class="content-area">
		<main id="main" class="site-main" role="main">

			<section class="error-404 not-found clear">
				<header class="page-header">
					<h1 class="page-title"><?php _e( 'This is a 404 error.', 'flask' ); ?></h1>
					<span class="taxonomy-description"><p><?php _e( 'The page that you\'re looking for can\'t be found. You may have mistyped a URL or come across a broken link. The best thing you can do now is search.' , 'flask' ); ?></p></span>
				</header><!-- .page-header -->

				<div class="page-content">
					<?php get_search_form(); ?>
				</div><!-- .page-content -->
			</section><!-- .error-404 -->

		</main><!-- #main -->
	</div><!-- #primary -->

<?php get_footer(); ?>
