Files
healthpot/templates/dashboard.html.hbs
2024-01-31 16:51:49 +01:00

42 lines
1.3 KiB
Handlebars

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="">
<link rel="icon" type="image/svg+xml" href="/static/icon.svg">
<link rel="stylesheet" href="/static/styles/common.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Ubuntu|Ubuntu+Mono&display=swap">
<title>healthpot</title>
<script>
// refresh the page after 30 seconds
setTimeout(location.reload.bind(location), 30000);
</script>
</head>
<body>
<h1 class="title">healthpot</h1>
<div class="last_update">
<span>last update:</span>
<span class="last_update_time">{{last_update}}</span>
</div>
<ul class="service_list">
{{#each services}}
<li class="service_entry">
<span class="service_name">{{this.name}}</span>
<span> is </span>
<span class="service_status"
style="background-color: {{this.status_color}}">
{{this.status_text}}
</span>
</li>
{{/each}}
</ul>
</body>
</html>