dev_error.html 632 B

12345678910111213141516171819202122232425262728293031323334
  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. <pre>
  25. <code>
  26. {{stack}}
  27. </code>
  28. </pre>
  29. </div>
  30. </body>
  31. </html>