-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
executable file
·161 lines (155 loc) · 6.34 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
<!doctype html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<script type="text/html" data-template-name="chessPieceTmpl">
{{{symbol}}}
</script>
<div id="chess-viewer-root" class="chess-viewer">
<script type="text/html">
<h1>{{Chess.gameController.gameDefinition.title}}</h1>
<div class="chess-board-container">
<span class="chess-board-border">
{{#view Chess.GameView}}
<table class="chess-board">
<tr>
<td class="square square_white"></td>
<td class="square square_black"></td>
<td class="square square_white"></td>
<td class="square square_black"></td>
<td class="square square_white"></td>
<td class="square square_black"></td>
<td class="square square_white"></td>
<td class="square square_black"></td>
</tr>
<tr>
<td class="square square_black"></td>
<td class="square square_white"></td>
<td class="square square_black"></td>
<td class="square square_white"></td>
<td class="square square_black"></td>
<td class="square square_white"></td>
<td class="square square_black"></td>
<td class="square square_white"></td>
</tr>
<tr>
<td class="square square_white"></td>
<td class="square square_black"></td>
<td class="square square_white"></td>
<td class="square square_black"></td>
<td class="square square_white"></td>
<td class="square square_black"></td>
<td class="square square_white"></td>
<td class="square square_black"></td>
</tr>
<tr>
<td class="square square_black"></td>
<td class="square square_white"></td>
<td class="square square_black"></td>
<td class="square square_white"></td>
<td class="square square_black"></td>
<td class="square square_white"></td>
<td class="square square_black"></td>
<td class="square square_white"></td>
</tr>
<tr>
<td class="square square_white"></td>
<td class="square square_black"></td>
<td class="square square_white"></td>
<td class="square square_black"></td>
<td class="square square_white"></td>
<td class="square square_black"></td>
<td class="square square_white"></td>
<td class="square square_black"></td>
</tr>
<tr>
<td class="square square_black"></td>
<td class="square square_white"></td>
<td class="square square_black"></td>
<td class="square square_white"></td>
<td class="square square_black"></td>
<td class="square square_white"></td>
<td class="square square_black"></td>
<td class="square square_white"></td>
</tr>
<tr>
<td class="square square_white"></td>
<td class="square square_black"></td>
<td class="square square_white"></td>
<td class="square square_black"></td>
<td class="square square_white"></td>
<td class="square square_black"></td>
<td class="square square_white"></td>
<td class="square square_black"></td>
</tr>
<tr>
<td class="square square_black"></td>
<td class="square square_white"></td>
<td class="square square_black"></td>
<td class="square square_white"></td>
<td class="square square_black"></td>
<td class="square square_white"></td>
<td class="square square_black"></td>
<td class="square square_white"></td>
</tr>
</table>
{{view GamePiecesView}}
{{/view}}
</span>
</div>
<div class="chess-game-info-container">
{{#view Chess.GameInfoView}}
{{#view Chess.PreviousButton}}
Previous
{{/view}}
{{#view Chess.PlayButton}}
{{text}}
{{/view}}
{{#view Chess.NextButton}}
Next
{{/view}}
<div class="chess-game-info-text">
{{game.gameDefinition.whitePlayer}}
<span class="chess-game-info-versus">VS.</span>
{{game.gameDefinition.blackPlayer}}
</div>
<table class="chess-game-info-captures">
<tr>
<td class="chess-game-info-captures-label">
Captured White
</td>
<td class="chess-game-info-captures-value">
{{view capturedWhiteView}}
</td>
</tr>
<tr>
<td class="chess-game-info-captures-label">
Captured Black
</td>
<td class="chess-game-info-captures-value">
{{view capturedBlackView}}
</td>
</tr>
</table>
<div class="chess-game-info-attack">
{{game.currentMove.attack}}
</div>
<div class="chess-game-info-text">
{{game.currentMove.comment}}
</div>
{{/view}}
</div>
</script>
</div>
<script src="js/libs/jquery-1.7.1.min.js"></script>
<script src="js/libs/ember-0.9.3.js"></script>
<script src="js/app.js"></script>
<script src="js/model.js"></script>
<script src="js/controller.js"></script>
<script src="js/view.js"></script>
<script type="text/javascript">
Chess.gameController.set('gameDefinition', Chess.theImmortalGame);
</script>
</body>