th7/templates/index.tmpl

27 lines
666 B
Cheetah
Raw Normal View History

2022-12-08 10:53:25 +00:00
{{ define "page_index" }}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{{ .title }}</title>
</head>
<body>
<h1>TH7</h1>
<table id="data">
<tr>
<th>Channel</th>
<th>Value</th>
<th>Unit</th>
</tr>
</table>
<p id="vdd">V<sub>DD</sub>:</p>
<p id="vref">V<sub>REF</sub>:</p>
<p id="vadj">V<sub>ADJ</sub>:</p>
<p id="timestamp">Last updated:</p>
<script src="/assets/data-updater.js"></script>
</body>
</html>
{{ end }}