refactor: changes entire project structure

This commit is contained in:
2024-02-19 01:05:33 -05:00
parent 3e45c22b59
commit aae9ba4a27
13 changed files with 240 additions and 255 deletions

20
app/templates/index.html Normal file
View File

@@ -0,0 +1,20 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>NHL Scoreboard</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="static\styles.css">
</head>
<body>
<h1 id="live-games"></h1>
<div id="live-games-section"></div>
<h1 id="on-later"></h1>
<div id="pre-games-section"></div>
<h1 id="game-over"></h1>
<div id="final-games-section"></div>
<script src="/static/script.js"></script>
</body>
</html>