-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (36 loc) · 1.47 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>🌡💧</title>
<link rel="stylesheet" href="static/css/bulma.min.css">
</head>
<body>
<section class="section">
<div class="container">
<h1 class="title">
Landau in der Pfalz
</h1>
<p class="subtitle">
Aktuelle Temperatur und relative Luftfeuchtigkeit
</p>
<div class="tile is-ancestor">
<div class="tile is-2 is-vertical is-parent">
<div class="tile is-child box">
<p class="title">🌡 <span id="current-temperature"></span>°C</p>
</div>
</div>
<div class="tile is-2 is-vertical is-parent">
<div class="tile is-child box">
<p class="title">💧 <span id="current-humidity"></span>%</p>
</div>
</div>
</div>
<p><a href='https://luftdaten.info'>luftdaten.info</a> ∙ Data history: <a href='http://www.madavi.de/sensor/graph.php?sensor=esp8266-14086548-dht'>Temperature & Humidity</a> | <a href='http://www.madavi.de/sensor/graph.php?sensor=esp8266-14086548-sds011'>Particulates</a> ∙ <a href='http://deutschland.maps.luftdaten.info/#13/49.1832/8.1015'>Map</a> ∙ <a href='https://github.com/ccauet/luftdaten-live-monitor'>Github</a></p>
</div>
</section>
<script src="static/js/jquery-3.3.1.min.js"></script>
<script src="static/js/luftdaten.js"></script>
</body>
</html>