404.php 853 B

1234567891011121314151617181920212223242526272829303132333435
  1. <!doctype html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>Error 404 - Not Found</title>
  6. <style>
  7. <?php echo file_get_contents(PUBLIC_PATH.'css/laravel.css'); ?>
  8. </style>
  9. </head>
  10. <body>
  11. <div id="main">
  12. <img src="http://laravel.com/img/splash/error.png" class="marker">
  13. <?php $messages = array('We need a map.', 'I think we\'re lost.', 'We took a wrong turn.'); ?>
  14. <h1><?php echo $messages[mt_rand(0, 2)]; ?></h1>
  15. <h2>Server Error: 404 (Not Found)</h2>
  16. <h3>What does this mean?</h3>
  17. <p>
  18. We couldn't find the page you requested on our servers. We're really sorry
  19. about that. It's our fault, not yours. We'll work hard to get this page
  20. back online as soon as possible.
  21. </p>
  22. <p>
  23. Perhaps you would like to go to our <?php echo HTML::link('/', 'home page'); ?>?
  24. </p>
  25. </div>
  26. </body>
  27. </html>