999.html 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. <!DOCTYPE html>
  2. <html xmlns:th="http://www.thymeleaf.org"
  3. xmlns:sec="http://www.pollix.at/thymeleaf/shiro">
  4. <head th:replace="admin/common/html/head :: head_Normal(~{::title},~{::link},~{::style})">
  5. <title th:text=${title}></title>
  6. <!-- 这儿引用单独的css link -->
  7. <link rel="stylesheet" th:href="@{/static/admin/assets/js/button/ladda/ladda.min.css}">
  8. <link rel="stylesheet" th:href="@{/static/admin/assets/css/extra-pages.css}">
  9. <style type="text/css">
  10. /**
  11. *这里写单独的css样式
  12. */
  13. body {
  14. overflow:hidden!important;
  15. padding-top: 120px;
  16. }
  17. </style>
  18. </head>
  19. <body>
  20. <div id="awwwards" class="right black">
  21. <a href="#" target="_blank">best websites of the world</a>
  22. </div>
  23. <!-- Preloader -->
  24. <div id="preloader">
  25. <div id="divstatus">&nbsp;</div>
  26. </div>
  27. <div class="logo-error">
  28. <h1>Gyee_Frame_HF
  29. <span>v1.0</span>
  30. </h1>
  31. </div>
  32. <!-- Main content -->
  33. <section class="page-error">
  34. <div class="error-page">
  35. <h2 class="headline text-info">系统异常,请联系管理员</h2>
  36. <div class="error-content">
  37. <h3><i class="fa fa-warning text-yellow"></i> 哎呀!页面错误。</h3>
  38. <p>
  39. 页面报错。同时,您可以 <a class="error-link" th:href='@{/admin/login}'>返回首页</a> 或尝试使用搜索表单
  40. </p>
  41. <form class='search-form'>
  42. <input type="text" name="search" class='form-control' placeholder="Search" />
  43. </form>
  44. </div>
  45. <!-- /.error-content -->
  46. </div>
  47. <!-- /.error-page -->
  48. </section>
  49. <!-- END 右侧隐藏滑块内容-->
  50. <!-- 通用js -->
  51. <div th:include="admin/common/html/js :: onload_js">
  52. </div>
  53. <script type="text/javascript">
  54. //session获取iframe处理
  55. if (window != top) {
  56. top.location.href = location.href;
  57. }
  58. </script>
  59. </body>
  60. </html>