-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
53 lines (44 loc) · 999 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<html>
<head>
<title>hangman</title>
<link rel="stylesheet" type="text/css" href="css/styles.css">
</head>
<body>
<div class="hangmanWrapper">
<div class="hangman">
<div class="parts">
<div id="head"> </div>
<div id="neck"> </div>
<div id="hand1"> </div>
<div id="hand2"> </div>
<div id="leg1"> </div>
<div id="leg2"> </div>
</div>
<img src="hangman.png">
</div>
<div class="question">
smth
</div>
</div>
<div class="keypad">
</div>
<script id="question-template" type="text/x-handlebars-template">
<div class="clue">{{{clue}}}</div>
<div class="blankspace">
{{#each chars}}
<span class="{{typoo}}">
_
</span>
{{/each}}
</div>
</script>
<script id="keypad-template" type="text/x-handlebars-template">
{{#each keys}}
<div class="{{this}} keys" data-value="{{this}}" >{{this}}</div>
{{/each}}
</script>
<script src="js/jquery-1.11.1.min.js"></script>
<script src="js/handlebars-v1.3.0.js"></script>
<script src="js/tryhangman.js"></script>
</body>
</html>