aboutsummaryrefslogtreecommitdiff
path: root/web/app/templates/front-page.html
diff options
context:
space:
mode:
Diffstat (limited to 'web/app/templates/front-page.html')
-rw-r--r--web/app/templates/front-page.html24
1 files changed, 24 insertions, 0 deletions
diff --git a/web/app/templates/front-page.html b/web/app/templates/front-page.html
new file mode 100644
index 0000000..1846dea
--- /dev/null
+++ b/web/app/templates/front-page.html
@@ -0,0 +1,24 @@
+<div class="container">
+
+ <h1>
+ Diller
+ <small class="text-muted">All your sensor data are belong to us</small>
+ </h1>
+
+ <h2>Devices</h2>
+
+ <table>
+ <thead>
+ <tr>
+ <th>Key</th>
+ </tr>
+ </thead>
+ <tbody>
+ <tr ng-repeat="d in ctrl.devices | orderBy:'key'">
+ <td>
+ <a href="#/device/{{d.id}}">{{d.key}}</a>
+ </td>
+ </tr>
+ </tbody>
+ </table>
+</div>