123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- <!DOCTYPE html>
- <html xmlns:th="http://www.thymeleaf.org"
- xmlns:sec="http://www.pollix.at/thymeleaf/shiro">
- <head th:replace="admin/common/html/head :: head_Normal(~{::title},~{::link},~{::style})">
- <title th:text=${title}></title>
- <!-- 这儿引用单独的css link -->
- <link rel="stylesheet" th:href="@{/static/admin/assets/js/button/ladda/ladda.min.css}">
- <link rel="stylesheet" th:href="@{/static/admin/assets/css/extra-pages.css}">
- <style type="text/css">
- /**
- *这里写单独的css样式
- */
- body {
- overflow:hidden!important;
- padding-top: 120px;
- }
- </style>
- </head>
- <body>
- <div id="awwwards" class="right black">
- <a href="#" target="_blank">best websites of the world</a>
- </div>
- <!-- Preloader -->
- <div id="preloader">
- <div id="divstatus"> </div>
- </div>
- <div class="logo-error">
- <h1>Gyee_Frame_HF
- <span>v1.0</span>
- </h1>
- </div>
- <!-- Main content -->
- <section class="page-error">
- <div class="error-page">
- <h2 class="headline text-info">系统异常,请联系管理员</h2>
- <div class="error-content">
- <h3><i class="fa fa-warning text-yellow"></i> 哎呀!页面错误。</h3>
- <p>
- 页面报错。同时,您可以 <a class="error-link" th:href='@{/admin/login}'>返回首页</a> 或尝试使用搜索表单
- </p>
- <form class='search-form'>
- <input type="text" name="search" class='form-control' placeholder="Search" />
- </form>
- </div>
- <!-- /.error-content -->
- </div>
- <!-- /.error-page -->
- </section>
- <!-- END 右侧隐藏滑块内容-->
- <!-- 通用js -->
- <div th:include="admin/common/html/js :: onload_js">
-
- </div>
- <script type="text/javascript">
- //session获取iframe处理
- if (window != top) {
- top.location.href = location.href;
- }
- </script>
- </body>
- </html>
|