24 lines
495 B
HTML
24 lines
495 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="stylesheet" href="/static/style.css" />
|
|
<link rel="icon" type="image/x-icon" href="/static/snufficon/excited.png">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Millics</title>
|
|
</head>
|
|
<body>
|
|
|
|
<h1>Millics</h1>
|
|
<table>
|
|
<tr>
|
|
<td>CPU</td>
|
|
<td>{{.CpuUsage}} %</td>
|
|
</tr>
|
|
<tr>
|
|
<td>sysLoad</td>
|
|
<td>{{.SysLoad}}</td>
|
|
</tr>
|
|
</table>
|
|
</body>
|
|
</html>
|