honk/views/about.html

16 lines
419 B
HTML
Raw Normal View History

2019-06-08 21:31:00 +02:00
{{ template "header.html" . }}
<main>
<div class="info">
{{ .AboutMsg }}
2019-11-09 08:50:43 +01:00
<p>
<table class="font08em">
2019-11-09 08:50:43 +01:00
<tbody>
<tr><td>version:<td class="textright">{{ .HonkVersion }}
<tr><td>memory:<td class="textright">{{ printf "%.02f" .Sensors.Memory }}MB
<tr><td>uptime:<td class="textright">{{ printf "%.02f" .Sensors.Uptime }}s
<tr><td>cputime:<td class="textright">{{ printf "%.02f" .Sensors.CPU }}s
2019-11-09 08:50:43 +01:00
</table>
<p>
2019-06-08 21:31:00 +02:00
</div>
</main>