500.html 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <!DOCTYPE html>
  2. <!--
  3. ! Excerpted from "Agile Web Development with Rails",
  4. ! published by The Pragmatic Bookshelf.
  5. ! Copyrights apply to this code. It may not be used to create training material,
  6. ! courses, books, articles, and the like. Contact us if you are in doubt.
  7. ! We make no guarantees that this code is fit for any purpose.
  8. ! Visit http://www.pragmaticprogrammer.com/titles/rails4 for more book information.
  9. -->
  10. <!--
  11. ! Excerpted from "Agile Web Development with Rails, 4rd Ed.",
  12. ! published by The Pragmatic Bookshelf.
  13. ! Copyrights apply to this code. It may not be used to create training material,
  14. ! courses, books, articles, and the like. Contact us if you are in doubt.
  15. ! We make no guarantees that this code is fit for any purpose.
  16. ! Visit http://www.pragmaticprogrammer.com/titles/rails4 for more book information.
  17. -->
  18. <html>
  19. <head>
  20. <title>We're sorry, but something went wrong (500)</title>
  21. <style type="text/css">
  22. body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
  23. div.dialog {
  24. width: 25em;
  25. padding: 0 4em;
  26. margin: 4em auto 0 auto;
  27. border: 1px solid #ccc;
  28. border-right-color: #999;
  29. border-bottom-color: #999;
  30. }
  31. h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
  32. </style>
  33. </head>
  34. <body>
  35. <!-- This file lives in public/500.html -->
  36. <div class="dialog">
  37. <h1>We're sorry, but something went wrong.</h1>
  38. <p>We've been notified about this issue and we'll take a look at it shortly.</p>
  39. </div>
  40. </body>
  41. </html>