diff options
Diffstat (limited to 'templates')
| -rw-r--r-- | templates/index.html | 17 |
1 files changed, 13 insertions, 4 deletions
diff --git a/templates/index.html b/templates/index.html index 6337647..be23282 100644 --- a/templates/index.html +++ b/templates/index.html @@ -1,7 +1,9 @@ <!DOCTYPE html> <html> <head> + <title>MASU</title> <link rel="stylesheet" href="/static/style.css"> + <link rel="stylesheet" href="/static/timeVisualizer.css"> </head> <body> <header> @@ -9,11 +11,18 @@ <label>Weather City: <input id="city" value="Kofu, JP"></label> <label><input type="checkbox" id="pause" checked> Auto-Update</label> </header> - <div class="grid"> - <div class="block" id="time"></div> - <div class="block" id="weather"></div> + <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 src="/static/script.js"></script> + <script type="module" src="/static/script.js"></script> </body> </html> |
