35 lines
		
	
	
		
			954 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
		
			954 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<!DOCTYPE html>
 | 
						|
 | 
						|
<?php
 | 
						|
  include "./php/age.php";
 | 
						|
  include "./page-blocks/head-content.php";
 | 
						|
  include "./page-blocks/footer.php";
 | 
						|
?>
 | 
						|
 | 
						|
<html>
 | 
						|
  <head>
 | 
						|
    <?php insert_head(); ?>
 | 
						|
    <title>Not Found</title>
 | 
						|
  </head>
 | 
						|
  <body>
 | 
						|
    <h1 class="page-title">Not Found</h1>
 | 
						|
    <div class="title-image">
 | 
						|
        <picture>
 | 
						|
          <source srcset="/images/error-pages/not-found.jxl">
 | 
						|
          <source srcset="/images/error-pages/not-found.webp">
 | 
						|
          <img src="/images/error-pages/not-found.png" alt="Not Found">
 | 
						|
        </picture>
 | 
						|
      </div>
 | 
						|
      <div class="page-main-content">
 | 
						|
        <p>
 | 
						|
          I don't know where you are trying to go, but wherever it is, it 
 | 
						|
          doesn't exist.
 | 
						|
        </p>
 | 
						|
        <p>
 | 
						|
          If you followed a link and got this page then get in touch with the 
 | 
						|
          person who sent you the link.  If it was me - I'm sorry, I messed up.
 | 
						|
        </p>
 | 
						|
      </div>
 | 
						|
    <?php insert_footer(); ?>
 | 
						|
  </body>
 | 
						|
</html>
 |