aquifer/www/index.html

38 lines
590 B
HTML
Raw Normal View History

2023-02-07 08:49:20 -05:00
<html>
<head>
2023-02-10 08:48:05 -05:00
<title>{{hostname}}</title>
2023-02-07 08:49:20 -05:00
<meta http-equiv="refresh" content="500">
<style>
body {
margin: 20px;
font-family: sans-serif;
text-align: center;
background-color: #333;
color: #ddd;
}
.water-present {
color: pink;
}
.water-absent {
color: lightblue;
}
2023-02-07 11:22:31 -05:00
.temperature {
font-family: monospace;
}
2023-02-07 08:49:20 -05:00
</style>
</head>
<body>
2023-02-10 08:48:05 -05:00
<h2>{{hostname}}</h2>
2023-02-07 08:49:20 -05:00
<p>{{datetime}}</p>
2023-02-07 11:22:31 -05:00
<p>{{temperature}} &#176;C</p>
<p>Water is <span class="{{waterClass}}">{{waterStatus}}</span></p>
2023-02-07 08:49:20 -05:00
</body>
</html>