23 lines
		
	
	
		
			443 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			443 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
/**
 | 
						|
 * @package WordPress
 | 
						|
 * @subpackage Default_Theme
 | 
						|
 */
 | 
						|
 | 
						|
get_header();
 | 
						|
?>
 | 
						|
 | 
						|
	<div id="content" class="narrowcolumn">
 | 
						|
 | 
						|
		<div id="main">
 | 
						|
			<h2 class="center">Error 404 - Page Not Found</h2>
 | 
						|
			<p>Oops, the page you are looking for does not exist. You may search using the search box, or visit the <a href="http://aclindsay.com">homepage</a> to get back on track.</p>
 | 
						|
		</div>
 | 
						|
 | 
						|
 | 
						|
<?php get_sidebar(); ?>
 | 
						|
 | 
						|
	</div>
 | 
						|
 | 
						|
<?php get_footer(); ?>
 |