aboutsummaryrefslogtreecommitdiffstats
path: root/app/templates/index.html
blob: 0d10afa6c5b48ae7f84b55739c814186fa23b190 (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
29
<!DOCTYPE html>
<html>
<head>
  <title>MASU</title>
  <link rel="stylesheet" href="/static/style.css">
  <link rel="icon" type="image/x-icon" href="{{ url_for('static', filename='favicon.ico') }}">
</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">
        <div id="time-localClock"></div>
        <div id="time-worldClock"></div>
        <div id="time-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>