500.html 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. {% extends theme("layout.html") %}
  2. {% block head %}
  3. {{ super() }}
  4. <style type="text/css">
  5. label>span {
  6. color: deepskyblue;
  7. }
  8. .btn,
  9. .form-group>div>div,
  10. .form-control {
  11. border-radius: 0;
  12. }
  13. html,body {
  14. height: 100%;
  15. }
  16. .page-box {
  17. min-height: 200px;
  18. }
  19. .page-box .server-message {
  20. padding: 35px 0;
  21. }
  22. body {
  23. overflow: hidden;
  24. }
  25. </style>
  26. {% endblock head %}
  27. {% block body %}
  28. <script type="text/javascript" src="{{ theme_static('widgets/wow/wow.js') }}"></script>
  29. <script type="text/javascript">
  30. /* WOW animations */
  31. wow = new WOW({
  32. animateClass: 'animated',
  33. offset: 100
  34. });
  35. wow.init();
  36. </script>
  37. <div class="center-vertical">
  38. <div class="center-content row">
  39. <div class="col-md-6 center-margin">
  40. <div class="server-message wow bounceInDown">
  41. <h1>Error 500</h1>
  42. <h2>The server encountered a syntax error and could not complete your request.</h2>
  43. <p>Try again in a few minutes or contact the website administrator.</p>
  44. </div>
  45. </div>
  46. </div>
  47. </div>
  48. {% endblock body %}