404.php 401 B

1234567891011121314151617181920
  1. <?php
  2. $bodyclasses = '404 error page';
  3. $title = '404';
  4. $tagline = 'Something\'s wrong';
  5. $description = 'Yep, you are looking for something that is not here.';
  6. ?>
  7. <?=i('_header')?>
  8. <article>
  9. <header>
  10. <h2>Nope</h2>
  11. </header>
  12. <section>
  13. <p>Sorry, you are looking for something that is not here.</p>
  14. <p>And just in case, I'm not a teapot.</p>
  15. </section>
  16. </article>
  17. <?=i('_footer')?>