honk/views/about.html

16 lines
423 B
HTML
Raw Normal View History

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