aboutsummaryrefslogtreecommitdiffstats
path: root/app/templates/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'app/templates/index.html')
-rw-r--r--app/templates/index.html27
1 files changed, 27 insertions, 0 deletions
diff --git a/app/templates/index.html b/app/templates/index.html
new file mode 100644
index 0000000..332b78b
--- /dev/null
+++ b/app/templates/index.html
@@ -0,0 +1,27 @@
+<!DOCTYPE html>
+<html>
+<head>
+ <title>MASU</title>
+ <link rel="stylesheet" href="/static/style.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>