aboutsummaryrefslogtreecommitdiffstats
path: root/templates/index.html
diff options
context:
space:
mode:
authorMitsuo Tokumori <[email protected]>2025-03-08 16:03:30 +0900
committerMitsuo Tokumori <[email protected]>2025-03-08 16:03:30 +0900
commit51163b167cce01af6101438e5e61145ad798f213 (patch)
tree9c8e75266cedfb205db175b0b2bc41b49df75cea /templates/index.html
parentd9af103b9a8aed86d6ac834f1240edfb2173ffa0 (diff)
downloadmasu-51163b167cce01af6101438e5e61145ad798f213.tar.gz
masu-51163b167cce01af6101438e5e61145ad798f213.tar.bz2
masu-51163b167cce01af6101438e5e61145ad798f213.zip
Restructure python code to be modular
The python code is now a package named app. app/models: db models app/routes: flask blueprints app/static: css, js app/templates: jinja html templates
Diffstat (limited to 'templates/index.html')
-rw-r--r--templates/index.html27
1 files changed, 0 insertions, 27 deletions
diff --git a/templates/index.html b/templates/index.html
deleted file mode 100644
index 332b78b..0000000
--- a/templates/index.html
+++ /dev/null
@@ -1,27 +0,0 @@
-<!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>