58 lines
2.2 KiB
Go
58 lines
2.2 KiB
Go
<!DOCTYPE html>
|
||
<html>
|
||
<head>
|
||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
||
<title>MM-Wiki 404</title>
|
||
<link href="/static/css/error.css" rel="stylesheet">
|
||
</head>
|
||
<body>
|
||
<div class="error-page">
|
||
<div class="error-page-container">
|
||
<div class="error-page-main">
|
||
<h3>
|
||
<strong>404</strong>很抱歉,您要访问的页面不存在!
|
||
</h3>
|
||
<div class="error-page-actions">
|
||
<div>
|
||
<h4>可能原因:</h4>
|
||
<ol>
|
||
<li>输入的网址不正确</li>
|
||
<li>找不到请求的页面</li>
|
||
<li>网络信号差不稳定</li>
|
||
</ol>
|
||
</div>
|
||
<div>
|
||
<h4>可以尝试:</h4>
|
||
<ol>
|
||
<li><a href="/">返回首页</a></li>
|
||
<li><a href="https://github.com/phachon/mm-wiki/issues">提交反馈</a></li>
|
||
<li><a href="https://github.com/phachon">联系作者</a></li>
|
||
</ol>
|
||
</div>
|
||
</div>
|
||
<div style="margin-top: 20px; text-align: center; line-height: 2.0">
|
||
<div style="font-size: 12px;"> <span id="countdown">10</span> 秒后自动跳转至<a href="/" style="color: #0c0d0e;">首页</a></div>
|
||
<div style="font-size: 12px;color: #949CAF;">© {{.copyright}} <a style="color: #949CAF;" target="_blank" href="https://github.com/phachon/MM-Wiki"><i class="glyphicon glyphicon-hand-right"></i>MM Wiki Version {{.version}}</a></div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<script type="text/javascript">
|
||
var t = 10;
|
||
function showTime(){
|
||
t -= 1;
|
||
document.getElementById("countdown").innerHTML = t;
|
||
if(t == 0){
|
||
if (self != top) {
|
||
parent.location.href = '/';
|
||
}else {
|
||
location.href = '/';
|
||
}
|
||
}
|
||
setTimeout("showTime()",1000);
|
||
}
|
||
showTime();
|
||
</script>
|
||
</body>
|
||
</html> |