aboutsummaryrefslogtreecommitdiffstats
path: root/templates/layout.html
blob: a49f1428de2e200d6157870fb5b55744e4a3a0c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<!doctype html>
<title>Sensor</title>
<link rel=stylesheet type=text/css href="{{ url_for('static', filename='pagedown.css') }}">
<div class=page>
  <h1>Sensor Readings</h1>
  <hr>
  <a href="bedroom">Bedroom</a> <a href="mainfloor">Mainfloor</a> <a href="interactive">Interactive</a>
  <hr>
  <main>
  {% block body %}{% endblock %}
  </main>
</div>