mirror of https://github.com/1099438829/apeblog
54 lines
1.6 KiB
HTML
54 lines
1.6 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>页面提醒 - {: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-weight: 700;
|
|
text-shadow: 1px 1px 0 #f5f6fa, 2px 2px 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">
|
|
<h4>{$msg}</h4>
|
|
</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> |