blob: be23282302dea723700015e3ff75c39085cbab5d (
plain)
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
|
<!DOCTYPE html>
<html>
<head>
<title>MASU</title>
<link rel="stylesheet" href="/static/style.css">
<link rel="stylesheet" href="/static/timeVisualizer.css">
</head>
<body>
<header>
<button id="reload">Reload</button>
<label>Weather City: <input id="city" value="Kofu, JP"></label>
<label><input type="checkbox" id="pause" checked> Auto-Update</label>
</header>
<div id="container">
<!-- TODO: Use Jinja2 blocks -->
<div class="block" id="time">
<p id="weatherSummary"></p>
<div id="timeVisualizer"></div>
</div>
<div class="block" id="weather">
<img id="weather-icon" src="" alt="weather icon">
<p id="weather-summary"></p>
</div>
<!-- Add more blocks -->
</div>
<script type="module" src="/static/script.js"></script>
</body>
</html>
|