-
Notifications
You must be signed in to change notification settings - Fork 8
/
index.html
31 lines (28 loc) · 1.07 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>ServerStatus</title>
<link rel="shortcut icon" href="/src/assets/favicon.png" type="image/x-icon">
</head>
<body>
<div class="px-3 sm:px-6 min-h-screen relative">
<h1 class="text-4xl font-bold py-4">
服务器监控
</h1>
<noscript>
<p><strong>浏览此页面需要启用 JavaScript.</strong></p>
<p><strong>Please enable JavaScript to view this page.</strong></p>
</noscript>
<div id="app"></div>
<div class="text-center absolute left-0 bottom-0 py-4 w-full">
Powered by <a class="text-blue-500" href="https://github.com/zdz/ServerStatus-Rust"
target="_blank">ServerStatus-Rust</a>.
Theme <a class="text-blue-500" href="https://github.com/orilights/ServerStatus-Theme-Light"
target="_blank">Light</a> by <a class="text-blue-500" href="https://orilight.top/" target="_blank">OriLight</a>
</div>
</div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>