incremental
diff --git a/static/partial-sensor.html b/static/partial-sensor.html
new file mode 100644
index 0000000..09f1cad
--- /dev/null
+++ b/static/partial-sensor.html
@@ -0,0 +1,28 @@
+<div class="container" ng-controller="sensorController">
+ <div class="row">
+ <div class="col-lg-8">
+ <div class="box box-primary">
+ <div class="box-header with-border">
+ <h4>Summary
+ <h4>
+ </div>
+ <div class="box-body">
+ <table class="table table-striped system-status-table">
+ <thead>
+ <tr>
+ <th>Sensor</th>
+ <th>Value</th>
+ </tr>
+ </thead>
+ <tbody>
+ <tr ng-repeat="(sensor_name, value) in sensor_values">
+ <td class="fit">{{ sensor_name }}</td>
+ <td class="fit">{{ value }}</td>
+ </tr>
+ </tbody>
+ </table>
+ </div>
+ </div>
+ </div>
+ </div>
+</div>
\ No newline at end of file