15 lines
264 B
Handlebars
15 lines
264 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>
|
||
|
</body
|
||
|
</html>
|