-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
26 lines (26 loc) · 856 Bytes
/
index.html
File metadata and controls
26 lines (26 loc) · 856 Bytes
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
<!doctype html>
<html>
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Game With Backbone.js</title>
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<script type="text/template" id="gameTemplate">
<button id="shuffle">Shuffle</button>
<button id="addPlayer">Add Player</button>
<button id="removePlayer">Remove Player</button>
<h2><%= gameLabel %></h2>
<h3><%= playersLabel %></h3>
<p><%= deckLabel %></p>
</script>
<section id="gameBoard">
</section>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js"></script>
<script src="js/underscore.js"></script>
<script src="js/backbone.js"></script>
<script src="js/game.js"></script>
</body>
</html>