-
Notifications
You must be signed in to change notification settings - Fork 26
/
index.html
37 lines (34 loc) · 1.21 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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>iStats</title>
<link rel="stylesheet" href="node_modules/photon/dist/css/photon.css">
<link href="./stylesheets/whhg.css" rel="stylesheet" type="text/css">
<link href="./stylesheets/main.css" rel="stylesheet" type="text/css">
</head>
<body>
<div class="window">
<header class="toolbar toolbar-header">
<div class="toolbar-actions">
<div class="btn-group">
<button id="cpu-btn" class="btn btn-default" onclick="switchDisplay('cpu')">
<i class="icon-processorthree"></i>
CPU
</button>
<button id="mem-btn" class="btn btn-default" onclick="switchDisplay('mem')">
<i class="icon-sd"></i>
RAM
</button>
</div>
<button class="btn btn-default pull-right" onclick="quit()">
<i class="icon-off"></i>
</button>
</div>
</header>
<div id="container" class="window-content">
</div>
</div>
<script src="js/stats.js"></script>
</body>
</html>