rename index.php to index.html

I'm surprised that all PHP code got stripped out of the main file.
This commit is contained in:
2023-12-02 01:36:23 +01:00
parent 03e93a7b43
commit 1137d26cd6
Executable
+27
View File
@@ -0,0 +1,27 @@
<html lang="en-US">
<head>
<title>SSO Timer</title>
<meta charset="utf-8" />
<meta name="author" content="Thayol" />
<meta name="description" content="A Championship timer for Star Stable Online" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<link rel="icon" type="image/png" sizes="32x32" href="src/favicon-32x32.png" />
</head>
<body>
<div class="background-image"></div>
<div class="timer-container">
<div class="timer-panel">
<h2>Next Up</h2>
<h3 class="location-container">The <span id="location">...</span> Championship</h3>
<p class="championship">at <span id="time">00:00</span></p>
<p class="remaining">Remaining: <span id="timer">00:00:00</span></p>
</div>
</div>
<div class="days" id="championships_table"></div>
<script src="script.js"></script>
</body>
</html>