404.php 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>404 - Not Found</title>
  6. <link href="http://fonts.googleapis.com/css?family=Quattrocento&amp;v1" rel="stylesheet" type="text/css" media="all" />
  7. <link href="http://fonts.googleapis.com/css?family=Ubuntu&amp;v1" rel="stylesheet" type="text/css" media="all" />
  8. <link href='http://fonts.googleapis.com/css?family=Lobster+Two' rel='stylesheet' type='text/css'>
  9. <style type="text/css">
  10. body {
  11. background-color: #eee;
  12. color: #6d6d6d;
  13. font-family: 'Ubuntu';
  14. font-size: 16px;
  15. }
  16. a {
  17. color: #7089b3;
  18. font-weight: bold;
  19. text-decoration: none;
  20. }
  21. h1.laravel {
  22. font-family: 'Lobster Two', Helvetica, serif;
  23. font-size: 60px;
  24. margin: 0 0 15px -10px;
  25. padding: 0;
  26. text-shadow: -1px 1px 1px #fff;
  27. }
  28. h2 {
  29. font-family: 'Quattrocento', serif;
  30. font-size: 30px;
  31. margin: 30px 0 0 0;
  32. padding: 0;
  33. text-shadow: -1px 1px 1px #fff;
  34. }
  35. p {
  36. margin: 10px 0 0 0;
  37. line-height: 25px;
  38. }
  39. #header {
  40. margin: 0 auto;
  41. margin-bottom: 15px;
  42. margin-top: 20px;
  43. width: 80%;
  44. }
  45. #wrapper {
  46. background-color: #fff;
  47. border-radius: 10px;
  48. margin: 0 auto;
  49. padding: 10px;
  50. width: 80%;
  51. }
  52. #wrapper h2:first-of-type {
  53. margin-top: 0;
  54. }
  55. </style>
  56. </head>
  57. <body>
  58. <div id="header">
  59. <?php
  60. $messages = array("We're lost.", "This doesn't look familiar.", "We need a map.");
  61. $message = $messages[mt_rand(0, 2)];
  62. ?>
  63. <h1 class="laravel"><?php echo $message; ?></h1>
  64. </div>
  65. <div id="wrapper">
  66. <?php
  67. $apologies = array("This is embarrassing.", "Don't give up on us.", "We're really sorry.");
  68. $apology = $apologies[mt_rand(0, 2)];
  69. ?>
  70. <h2><?php echo $apology; ?></h2>
  71. <p>We couldn't find the resource you requested. Would you like go to our <a href="<?php echo Laravel\Config::get('application.url'); ?>">home page</a> instead?</p>
  72. </div>
  73. </body>
  74. </html>