mirror of
https://gitee.com/bookshelfplus/bookshelfplus
synced 2025-09-25 19:05:14 +08:00
29 lines
1.3 KiB
HTML
29 lines
1.3 KiB
HTML
<!DOCTYPE html>
|
||
<html>
|
||
<head>
|
||
<meta charset="utf-8">
|
||
<title>Oh No!</title>
|
||
<style>
|
||
body {
|
||
width: 35em;
|
||
margin: 0 auto;
|
||
font-family: Tahoma, Verdana, Arial, sans-serif;
|
||
}
|
||
</style>
|
||
</head>
|
||
<body>
|
||
<h1>Oh No! 服务器要炸啦!</h1>
|
||
<p>对不起,当前网站访问量过大,已超出服务器的最大处理能力,已触发自动保护机制。也请您不要频繁刷新,让服务器喝口水、喘口气儿吧~</p>
|
||
<p>本站由程序员小墨开发并开源,不接受打赏。如果您想支持本站,可以去B站或开源仓库为我点个Star,如果您有能力的话,也欢迎前往项目开源仓库为项目提交Pr。</p>
|
||
<p>感谢大家的支持。</p>
|
||
<p>B站: <a href="https://space.bilibili.com/457109942">https://space.bilibili.com/457109942</a></p>
|
||
<p>Gitee: <a href="https://gitee.com/bookshelfplus/bookshelfplus">https://gitee.com/bookshelfplus/bookshelfplus</a></p>
|
||
<p>Github: <a href="https://github.com/bookshelfplus/bookshelfplus">https://github.com/bookshelfplus/bookshelfplus</a></p>
|
||
<p style="text-align: center;"><em>书栖网</em><br><em><span id="date"></span></em></p>
|
||
<script>
|
||
var d = new Date();
|
||
document.getElementById("date").innerHTML = d.getFullYear() + "." + (d.getMonth() + 1) + "." + d.getDate();
|
||
</script>
|
||
</body>
|
||
</html>
|