500.html 1.2 KB

1234567891011121314151617181920212223242526272829303132333435
  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. <html>
  11. <head>
  12. <meta http-equiv="content-type" content="text/html; charset=UTF-8" />
  13. <title>We're sorry, but something went wrong (500)</title>
  14. <style type="text/css">
  15. body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
  16. div.dialog {
  17. width: 25em;
  18. padding: 0 4em;
  19. margin: 4em auto 0 auto;
  20. border: 1px solid #ccc;
  21. border-right-color: #999;
  22. border-bottom-color: #999;
  23. }
  24. h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
  25. </style>
  26. </head>
  27. <body>
  28. <!-- This file lives in public/500.html -->
  29. <div class="dialog">
  30. <h1>We're sorry, but something went wrong.</h1>
  31. <p>We've been notified about this issue and we'll take a look at it shortly.</p>
  32. </div>
  33. </body>
  34. </html>