first commit
This commit is contained in:
51
target/classes/templates/error/runtime_error.ftl
Normal file
51
target/classes/templates/error/runtime_error.ftl
Normal file
@@ -0,0 +1,51 @@
|
||||
<!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>猫眼后台管理系统主页</title>
|
||||
<#include "../admin/common/header.ftl"/>
|
||||
<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>500</h1>
|
||||
<h4>${msg!"服务器开小差了!"}</h4>
|
||||
<a href="/system/index" class="btn btn-primary ">返回首页</a>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<#include "../admin/common/footer.ftl"/>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function(){
|
||||
|
||||
});
|
||||
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user