2011-02-24 14:25:26 -05:00
|
|
|
<?php
|
2014-01-23 23:08:42 -05:00
|
|
|
include_once("common.php");
|
2011-02-24 14:25:26 -05:00
|
|
|
/**
|
|
|
|
* @package WordPress
|
|
|
|
* @subpackage Default_Theme
|
|
|
|
*/
|
|
|
|
|
|
|
|
get_header();
|
|
|
|
?>
|
|
|
|
|
|
|
|
<div id="content" class="narrowcolumn">
|
|
|
|
|
|
|
|
<div id="main">
|
|
|
|
<h2 class="center">Error 404 - Page Not Found</h2>
|
2014-01-24 22:44:19 -05:00
|
|
|
<p>Oops, the page you are looking for does not exist. You may search using the search box, or visit the <a href="<?php echo get_base_url(); ?>">homepage</a> to get back on track.</p>
|
2011-02-24 14:25:26 -05:00
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<?php get_sidebar(); ?>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<?php get_footer(); ?>
|