mirror of https://github.com/dirtbags/moth.git
33 lines
891 B
HTML
33 lines
891 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Scoreboard</title>
|
|
<link rel="stylesheet" href="basic.css">
|
|
<meta name="viewport" content="width=device-width">
|
|
<link rel="icon" href="images/luna-moth.svg" type="image/svg+xml">
|
|
<link rel="icon" href="images/luna-moth.png" type="image/png">
|
|
<script src="scoreboard.js" async></script>
|
|
<script>
|
|
function init() {
|
|
var sb = document.getElementById("scoreboard");
|
|
scoreboard(sb, true, "original", 60000);
|
|
}
|
|
|
|
document.addEventListener("DOMContentLoaded", init);
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<h1 class="Success">Scoreboard</h1>
|
|
<section>
|
|
<div id="scoreboard"></div>
|
|
</section>
|
|
<nav>
|
|
<ul>
|
|
<li><a href="puzzle-list.html">Puzzles</a></li>
|
|
<li><a href="scoreboard.html">Scoreboard</a></li>
|
|
<li><a href="scoring.html">Scoring</a></li>
|
|
</ul>
|
|
</nav>
|
|
</body>
|
|
</html>
|