-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
79 lines (77 loc) · 3.6 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>云监控</title>
<meta name="description" content="云监控">
<meta name="author" content="卢本伟">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon">
<!--[if lt IE 9]>
<script src="https://cdn.staticfile.org/html5shiv/r29/html5.min.js"></script>
<script src="https://cdn.staticfile.org/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
<link rel="stylesheet" href="layui/css/layui.css" />
<link id="layui_theme_css" href="css/light.css" rel="stylesheet">
</head>
<body>
<div class="layui-hide">
<h3>您不应该看到此提示,如果看到此提示说明您未能正确加载网站依赖,请启用js或换用其他浏览器</h3>
</div>
<noscript>
<h3>您的浏览器不支持js,请启用js或换用其他浏览器</h3>
</noscript>
<ul class="layui-nav layui-bg-blue" lay-bar="disabled">
<div class="layui-container">
<li class="layui-nav-item layui-font-20">云监控</li>
<li class="layui-nav-item">
<a href="javascript:;">主题</a>
<dl class="layui-nav-child">
<dd><a href="javascript:changeTheme('dark');">暗色</a></dd>
<dd><a href="javascript:changeTheme('light');">亮色</a></dd>
</dl>
</li>
</div>
</ul>
<div class="layui-container" style="margin-top: 20px;">
<div class="layui-row layui-col-space15">
<div class="layui-col-md12">
<div class="layui-panel">
<table class="layui-table" lay-even lay-skin="line" lay-size="sm" style="margin: 0;">
<thead>
<tr>
<th id="online_status">🔗协议</th>
<th id="month_traffic">📊月流量↓|↑</th>
<th id="name">📌节点</th>
<th id="type">🗂️虚拟化</th>
<th id="location">🌍位置</th>
<th id="uptime">⏱️在线</th>
<th id="load">负载</th>
<th id="network">🚦网络↓|↑</th>
<th id="traffic">📋总流量↓|↑</th>
<th id="cpu">🎯核芯</th>
<th id="ram">⚡️内存</th>
<th id="hdd">💾硬盘</th>
<th id="ping">🌐CU|CT|CM</th>
</tr>
</thead>
<tbody id="servers">
<!-- Servers here \o/ -->
</tbody>
</table>
</div>
</div>
</div>
<div class="layui-row layui-col-space15">
<div class="layui-col-md12">
<div class="layui-panel layui-text" style="padding: 10px;">
<p id="updated">最后更新: 几秒前.</p>
<a href="https://github.com/cppla/ServerStatus" target="_blank">ServerStatus中文版</a> | <a href="mailto:[email protected]" target="_blank">模板作者:卢本伟</a>
</div>
</div>
</div>
</div>
<script src="layui/layui.js"></script>
<script src="js/serverstatus.js"></script>
</body>