36 lines
1.0 KiB
HTML
36 lines
1.0 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en" xmlns:th="http://www.thymeleaf.org">
|
|
<head th:replace="_fragments :: head(~{::title})">
|
|
<meta charset="UTF-8">
|
|
<!--移动端预览-->
|
|
<meta name="viewport" content="device-width, initial-scale=1.0">
|
|
|
|
<title>404</title>
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/semantic-ui/2.2.4/semantic.min.css">
|
|
<!--引入自定义CSS-->
|
|
<link rel="stylesheet" href="../../static/css/me.css">
|
|
</head>
|
|
<body>
|
|
<!--导航-->
|
|
<nav th:replace="_fragments :: menu(1)" class="ui inverted attached segment segment m-padded-tb-mini m-shadow-small">
|
|
|
|
</nav>
|
|
<br>
|
|
<br>
|
|
<br>
|
|
<br>
|
|
<div class="m-container-small m-padded-tb-big">
|
|
<div class="ui error message">
|
|
<div class="ui container" style="height: 400px;text-align: center;">
|
|
<h2>404</h2>
|
|
<p>对不起,你访问的资源不存在!</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<br>
|
|
<br>
|
|
<br>
|
|
<footer th:replace="_fragments :: footer" class="ui inverted vertical segment m-padded-tb-massive ">
|
|
</footer>
|
|
</body>
|
|
</html> |