Add views/home.hbs template

This commit is contained in:
jkaplon 2015-06-25 14:14:48 -04:00
parent 098e4deebb
commit 92bba362ad

14
views/home.hbs Normal file
View File

@ -0,0 +1,14 @@
<!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>