js13kgames2015-reverse/src/index.html
2015-08-26 12:16:49 +02:00

32 lines
944 B
HTML

<html>
<head>
<meta charset="utf-8">
<title>js13kGames 2015 -- Aaron Fischer</title>
<script src="js13kgames-2015.min.js"></script>
</head>
<body>
<nav>
<ul>
<li>Dust: <strong id="res-dust">0</strong></li>
<li>Stone: <strong id="res-stone">0</strong></li>
<li>Carbon: <strong id="res-carbon">0</strong></li>
<li>Metal: <strong id="res-metal">0</strong></li>
</ul>
</nav>
<div id="asteroid">
<p>Time wasted on this ateroid: <strong id="time">0 hours</strong></p>
<h2>Asteroid classification: <span id="asteroid-classification"></span></h2>
<button id="btn-mine">Mine on this asteroid now!</button>
<button id="btn-to-station">Fly to station</button>
</div>
<div id="station">
<h2>Docked to station</h2>
<button id="btn-to-asteroid">Fly to the asteroid</button>
</div>
<script>bootstrap();</script>
</body>
</html>