-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
32 lines (31 loc) · 913 Bytes
/
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
<!doctype html>
<link rel='stylesheet' href="style/index.css">
<title>Lambda the Gathering</title>
<ul id="buttons"></ul>
<div>
<button id="advance">Advance a turn</button>
</div>
<div id="userA" class="user">
<div class="slots"></div>
<form class="cmd">
<textarea name="script"></textarea>
</form>
<br class="clear">
</div>
<div id="userB" class="user">
<div class="slots"></div>
<form class="cmd">
<textarea name="script"></textarea>
</form>
<br class="clear">
</div>
<script src="http://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.8.3.min.js"></script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.4.3/underscore-min.js"></script>
<script src="http://epeli.github.com/underscore.string/dist/underscore.string.min.js"></script>
<script type="text/javascript">
<!--
_.mixin(_.str.exports());
// -->
</script>
<script src="js/game.js"></script>
<script src="js/index.js"></script>