diff --git a/views/core.hbs b/views/core.hbs
index 1c52a42..d8afb01 100644
--- a/views/core.hbs
+++ b/views/core.hbs
@@ -1,13 +1,24 @@
{{!< default}}
-
Alerts from a single Particle Core:
-
- {{! try to add header to list pretty core name and locale text (not sure how to pass this from node}}
- {{alerts.0.coreName}}
- {{#each alerts}}
- - {{this.published_at}}: {{this.status}}
- {{/each}}
-
+{{! Grab 1st coreName value (it will be same value for entire set).}}
+Alerts from Particle Core: {{alerts.0.coreName}}
+
+
+
+
+ Timestamp |
+ Status |
+
+
+
+ {{#each alerts}}
+
+ {{this.published_at}} |
+ {{this.status}} |
+
+ {{/each}}
+
+