付延余
2022-12-16 f0f8ee8c4a945adbc742d9bab69382b28ad311fb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<!DOCTYPE html>
<html>
<head>
  <div  th:replace="common/header.html"></div>
 
 
</head>
<th:block th:if="${session.LOGIN_KEY != null}">
<body class="sidebar-mini sidebar-collapse">
</th:block>
<th:block th:if="${session.LOGIN_KEY == null}">
<body class="hold-transition sidebar-mini layout-fixed">
</th:block>
 
<div class="wrapper">
 
  <th:block th:if="${session.LOGIN_KEY != null}">
    <div th:replace="common/navbar.html"></div>
 
    <div th:replace="common/aside.html"></div>
  </th:block>
 
  <!-- Content Wrapper. Contains page content -->
  <th:block th:if="${session.LOGIN_KEY != null}">
    <div class="content-wrapper">
  </th:block>
  <th:block th:if="${session.LOGIN_KEY == null}">
    <div class="content-wrapper" style="margin-left: 10px">
  </th:block>
    <!-- Content Header (Page header) -->
    <section class="content-header">
      <div class="container-fluid">
        <div class="row mb-2">
          <div class="col-sm-6">
            <h1>404 找不到页面</h1>
          </div>
          <div class="col-sm-6">
            <!--<ol class="breadcrumb float-sm-right">
              <li class="breadcrumb-item"><a href="#"></a></li>
              <li class="breadcrumb-item active"></li>
            </ol>-->
          </div>
        </div>
      </div><!-- /.container-fluid -->
    </section>
 
    <!-- Main content -->
    <section class="content">
      <div class="error-page">
        <h2 class="headline text-warning"> 404</h2>
 
        <div class="error-content">
          <h3><i class="fas fa-exclamation-triangle text-warning"></i> 糟糕!找不到网页</h3>
 
          <p>
            我们找不到您想要的页面。同时,您联系我们提供帮助。
          </p>
 
        </div>
        <!-- /.error-content -->
      </div>
      <!-- /.error-page -->
    </section>
    <!-- /.content -->
  </div>
  <!-- /.content-wrapper -->
 
  <th:block th:if="${session.LOGIN_KEY != null}">
    <div th:replace="common/footer.html"></div>
  </th:block>
  <th:block th:if="${session.LOGIN_KEY == null}">
    <div th:replace="common/footerDashView.html"></div>
  </th:block>
 
 
</div>
<!-- ./wrapper -->
 
</body>
</html>