apeblog/app/admin/view/public/404.html

56 lines
1.8 KiB
HTML

<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no"/>
<title>404 - {:system_config('title')}后台管理系统</title>
<link rel="icon" href="{:system_config('favicon')}" type="image/ico">
<meta name="keywords" content="{:system_config('keywords')}">
<meta name="description" content="{:system_config('description')}">
<meta name="author" content="{:system_config('author')}">
<link href="__ADMIN_PATH__css/bootstrap.min.css" rel="stylesheet">
<link href="__ADMIN_PATH__css/materialdesignicons.min.css" rel="stylesheet">
<link href="__ADMIN_PATH__css/style.min.css" rel="stylesheet">
<style>
body {
background-color: #fff;
}
.error-page {
height: 100%;
position: fixed;
width: 100%;
}
.error-body {
padding-top: 5%;
}
.error-body h1 {
font-size: 210px;
font-weight: 700;
text-shadow: 4px 4px 0 #f5f6fa, 6px 6px 0 #33cabb;
line-height: 210px;
color: #33cabb;
}
.error-body h4 {
margin: 30px 0px;
}
</style>
</head>
<body>
<section class="error-page">
<div class="error-box">
<div class="error-body text-center">
<h1>404</h1>
<h4>很抱歉,但是那个页面看起来已经不存在了。</h4>
<a href="/admin/index/index" class="btn btn-primary ">返回首页</a>
</div>
</div>
</section>
<script type="text/javascript" src="__ADMIN_PATH__js/jquery.min.js"></script>
<script type="text/javascript" src="__ADMIN_PATH__js/bootstrap.min.js"></script>
<script type="text/javascript">;</script>
</body>
</html>