error.html 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Something bad happened</title>
  5. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. {% style "/assets/bootstrap/css/bootstrap.min.css" %}
  8. {% style "/assets/bootstrap/css/bootstrap-theme.min.css" %}
  9. <style type="text/css">
  10. html {
  11. height: 100%;
  12. min-height: 100%;
  13. min-width: 100%;
  14. overflow: hidden;
  15. width: 100%;
  16. }
  17. html body {
  18. height: 100%;
  19. margin: 0;
  20. padding: 0;
  21. width: 100%;
  22. }
  23. html .container-fluid {
  24. display: table;
  25. height: 100%;
  26. padding: 0;
  27. width: 100%;
  28. }
  29. html .row-fluid {
  30. display: table-cell;
  31. height: 100%;
  32. vertical-align: middle;
  33. }
  34. </style>
  35. </head>
  36. <body>
  37. <div class="container-fluid">
  38. <div class="row-fluid">
  39. <div class="col-lg-12">
  40. <div class="centering text-center">
  41. <div class="text-center">
  42. <h1><span class="text-danger">Error: {{status}}</span></h1>
  43. <hr>
  44. {% if title %}
  45. <h2 class="without-margin">{{title}}</h2>
  46. {% endif %}
  47. {% if message %}
  48. <h4 class="text-danger">{{message}}</h4>
  49. {% endif %}
  50. </div>
  51. </div>
  52. </div>
  53. </div>
  54. </div>
  55. </body>
  56. </html>