500.html 790 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
  2. <html>
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  5. <title></title>
  6. </head>
  7. <style type="text/css">
  8. <!--
  9. #error {
  10. position: absolute;
  11. width: 99%;
  12. height: 30%; margin : 0 auto; text-align : center;
  13. z-index: 1;
  14. top: 330px;
  15. text-align: center;
  16. margin: 0 auto;
  17. }
  18. #error div {
  19. width: 500px;
  20. text-align: center;
  21. margin: 0 auto;
  22. }
  23. #error p {
  24. font-weight: bold;
  25. }
  26. -->
  27. </style>
  28. <body>
  29. <div style="width: 100%; margin: 0 auto; text-align: center;">
  30. <img alt="" src="${.BASE_PATH}/static/images/common/error_500.png">
  31. </div>
  32. <div id="error">
  33. <div>
  34. <p>出现故障,请联系管理人员!</p>
  35. <p>${.error}</p>
  36. </div>
  37. </div>
  38. </body>
  39. </html>