alertmon/views/home.hbs

23 lines
403 B
Handlebars

<!DOCTYPE html>
<html>
<head>
<title>Alert Monitor</title>
</head>
<body>
<h1>Alerts from a single Particle Core:</h1>
<ul>
{{#each alerts}}
<li>{{this.coreId}}: {{this.published_at}}</li>
{{/each}}
</ul>
<script>
setTimeout(
function() {
location.reload();
}, 5000
);
</script>
</body
</html>