moth/theme/scoreboard.html

25 lines
641 B
HTML
Raw Normal View History

2018-09-18 18:22:03 -06:00
<!DOCTYPE html>
<html>
<head>
2018-09-18 21:29:05 -06:00
<title>Scoreboard</title>
2018-09-18 18:22:03 -06:00
<link rel="stylesheet" href="basic.css">
<meta name="viewport" content="width=device-width">
2020-02-29 17:12:35 -07:00
<script src="moment.min.js" async></script>
<script src="Chart.min.js" async></script>
<script src="scoreboard.js" async></script>
2018-09-18 18:22:03 -06:00
</head>
2020-02-29 17:12:35 -07:00
<body class="wide">
2019-03-07 07:53:58 -07:00
<h4 id="location"></h4>
2020-02-29 17:12:35 -07:00
<section class="rotate">
<div id="chart"></div>
<div id="rankings"></div>
2018-09-18 18:22:03 -06:00
</section>
<nav>
<ul>
2019-02-22 19:09:38 -07:00
<li><a href="index.html">Puzzles</a></li>
2018-09-18 18:22:03 -06:00
<li><a href="scoreboard.html">Scoreboard</a></li>
</ul>
</nav>
</body>
</html>