-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathindex.html
More file actions
88 lines (86 loc) · 2.88 KB
/
Copy pathindex.html
File metadata and controls
88 lines (86 loc) · 2.88 KB
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
80
81
82
83
84
85
86
87
88
<!DOCTYPE html>
<html lang="zh-cmn-Hans" xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8" />
<title>NodeInfo</title>
<meta name="generator" content="EverEdit" />
<meta name="author" content="xiaoz.me" />
<meta name="keywords" content="NodeInfo,NodeQuery" />
<meta name="description" content="NodeInfo使用NodeQuery API提供的数据,提供简易的服务器监控信息,可以很方便的放到自己网站,供管理员参阅查看。" />
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />
<link rel="Bookmark" href="favicon.ico" />
<link rel="stylesheet" href="static/layui/css/layui.css">
<link rel="stylesheet" href="static/style.css">
</head>
<body>
<!-- 顶部导航栏 -->
<div class = "header">
<div class = "layui-container">
<div class = "layui-row">
<div class = "lay-col-lg12">
<div class="left-menu"><a href="./"><h1>NodeInfo</h1></a></div>
<div class = "right-menu">
<ul class="layui-nav" lay-filter="">
<li class="layui-nav-item"><a href="https://github.com/helloxz/nodeinfo" target = "_blank" rel = "nofollow"><i class="layui-icon"></i> 源码下载</a></li>
<li class="layui-nav-item"><a href="https://www.xiaoz.me/archives/10153" target = "_blank"><i class="layui-icon"></i> 关于</a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
<!-- 顶部导航栏END --><!-- 内容部分 -->
<div class="layui-container user">
<div class="layui-row">
<div class="layui-col-lg12">
<!--内容部分-->
<div>
<table class="layui-table" id = "node">
<colgroup>
<col width="130">
<col width="90">
<col width="150">
<col width="180">
<col width="180">
<col width="150">
<col width="160">
<col>
</colgroup>
<thead>
<tr>
<th>主机</th>
<th>CPU</th>
<th>负载</th>
<th>内存</th>
<th>磁盘</th>
<th>网络</th>
<th>可用性(供参考)</th>
<th>当前状态</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
<div id = "loading"><center><img src="static/loading.gif" alt=""></center></div>
</div>
<!--内容部分-->
</div>
</div>
</div>
<!-- 内容部分end -->
<!-- 底部 -->
<div class = "footer">
<div class = "layui-container">
<div class = "layui-row">
<div class = "lay-col-lg12">
Copyright © 2018 Powered by <a href="https://github.com/helloxz/nodeinfo" rel = "nofollow" target = "_blank">NodeInfo</a>. | Author <a href="https://www.xiaoz.me/" rel = "nofollow" target = "_blank">xiaoz.me</a>
</div>
</div>
</div>
</div>
<!-- 底部END -->
<script src = "static/layui/layui.js"></script>
<script src="https://cdn.bootcss.com/jquery/2.2.4/jquery.min.js"></script>
<script type="text/javascript" src="static/embed.js"></script>
</body>
</html>