500.php 827 B

1234567891011121314151617181920212223242526272829303132333435
  1. <!doctype html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>Error 500 - Internal Server Error</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('Ouch.', 'Oh no!', 'Whoops!'); ?>
  14. <h1><?php echo $messages[mt_rand(0, 2)]; ?></h1>
  15. <h2>Server Error: 500 (Internal Server Error)</h2>
  16. <h3>What does this mean?</h3>
  17. <p>
  18. Something went wrong on our servers while we were processing your request.
  19. We're really sorry about this, and will work hard to get this resolved as
  20. 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>