sk_gm_server/template/error/500.html

41 lines
790 B
Go
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title></title>
</head>
<style type="text/css">
<!--
#error {
position: absolute;
width: 99%;
height: 30%; margin : 0 auto; text-align : center;
z-index: 1;
top: 330px;
text-align: center;
margin: 0 auto;
}
#error div {
width: 500px;
text-align: center;
margin: 0 auto;
}
#error p {
font-weight: bold;
}
-->
</style>
<body>
<div style="width: 100%; margin: 0 auto; text-align: center;">
<img alt="" src="${.BASE_PATH}/static/images/common/error_500.png">
</div>
<div id="error">
<div>
<p>!</p>
<p>${.error}</p>
</div>
</div>
</body>
</html>