-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
48 lines (43 loc) · 1.37 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<!DOCTYPE html>
<html lang="en">
<head>
<title>uRTS</title>
<meta charset="utf8">
<link rel="stylesheet" type="text/css" href="normalize.css">
<link rel="stylesheet" type="text/css" href="application.css">
</head>
<body>
<header>
<h1>μRTS</h1>
</header>
<article>
<section class="primary">
<div id="container">
<div id="game"></div>
<form id="console" action="#">
<input type="text">
</form>
<div id="gui">
<div id="toolbar">
Ore <span id="ore"></span>
Units <span id="units"></span> / <span id="space"></span>
</div>
<div id="minimap"></div>
<div id="details"></div>
<div id="build"></div>
</div>
<div id="menu">
<ul>
<li><a id="start" href="#">Start</a></li>
<li><a id="stop" href="#">Stop</a></li>
<li><a id="reroll" href="#">Reroll</a></li>
</ul>
</div>
</div>
</section>
<section id="debug">
</section>
</article>
<script data-main="application.js" src="lib/require.js"></script>
</body>
</html>