500.php 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>500 - Internal Server Error</title>
  6. <link href='http://fonts.googleapis.com/css?family=Ubuntu&amp;subset=latin' rel='stylesheet' type='text/css'>
  7. <style type="text/css">
  8. body {
  9. background-color: #fff;
  10. margin: 45px 0 0 0;
  11. font-family: 'Ubuntu', sans-serif;
  12. font-size: 16px;
  13. color: #3f3f3f;
  14. }
  15. h1 {
  16. font-size: 40px;
  17. margin: 0 0 10px 0;
  18. }
  19. a {
  20. color: #000;
  21. }
  22. #wrapper {
  23. width: 740px;
  24. margin: 0 auto;
  25. }
  26. #content {
  27. padding: 10px 10px 10px 10px;
  28. background-color: #ffebe8;
  29. border: 1px solid #dd3c10;
  30. border-radius: 10px;
  31. }
  32. </style>
  33. </head>
  34. <body>
  35. <div id="wrapper">
  36. <?php
  37. $messages = array('Whoops!', 'Oh no!', 'Ouch!');
  38. $message = $messages[mt_rand(0, 2)];
  39. ?>
  40. <h1><?php echo $message; ?></h1>
  41. <div id="content">
  42. An error occured while we were processing your request.
  43. <br /><br />
  44. Would you like go to our <a href="<?php echo System\Config::get('application.url'); ?>">home page</a> instead?
  45. </div>
  46. </div>
  47. </body>
  48. </html>