prod_error.html 566 B

1234567891011121314151617181920212223242526272829
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Error - {{status}}</title>
  5. <meta name="viewport" content="user-scalable=no, width=device-width, initial-scale=1.0, maximum-scale=1.0">
  6. <style>
  7. body {
  8. padding: 50px 80px;
  9. font: 14px "Helvetica Neue", Helvetica, sans-serif;
  10. }
  11. h1 {
  12. font-size: 2em;
  13. margin-bottom: 5px;
  14. }
  15. pre {
  16. font-size: .8em;
  17. }
  18. </style>
  19. </head>
  20. <body>
  21. <div id="error">
  22. <h1>Error</h1>
  23. <p>Looks like something broke!</p>
  24. </div>
  25. </body>
  26. </html>