alertmon/views/home.hbs

15 lines
264 B
Handlebars
Raw Normal View History

2015-06-25 14:14:48 -04:00
<!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>
</body
</html>