]> git.sesse.net Git - remoteglot-book/blob - www/book.html
Treat 0-length moves as not having a move.
[remoteglot-book] / www / book.html
1 <!doctype html>
2 <html>
3 <head>
4   <meta charset="utf-8" />
5   <meta http-equiv="X-UA-Compatible" content="IE=edge" />
6   <title>analysis.sesse.net</title>
7
8   <link rel="stylesheet" href="css/chessboard-0.3.0.min.css" />
9   <link rel="stylesheet" href="css/remoteglot.css" />
10 </head>
11 <body>
12 <h1 id="headline">Openings</h1>
13 <div id="boardcontainer">
14   <div id="board"></div>
15   <div id="bottompanel">
16     <!-- CSS abuse... -->
17     <p id="whiteclock"><a href="javascript:prev_move()">&lt;&lt;&lt;</a></p>
18     <p id="blackclock"><a href="javascript:next_move()">&gt;&gt;&gt;</a></p>
19     <p id="numviewers"></p>
20     <p id="gamesummary"></p>
21     <p id="gamehistory"></p>
22   </div>
23 </div>
24 <div id="analysis">
25   <p>
26     <label>
27       <input type="checkbox" name="includetransp" checked="checked" onclick="javascript:set_includetransp(this.checked)" />Include transpositions
28     </label>
29   </p>
30   <table>
31     <thead>
32       <tr id="headings">
33         <!--<th>Move</th>
34         <th>Games</th>
35         <th>%</th>
36         <th>Win%</th>
37         <th>WWin</th>
38         <th>%WW</th>
39         <th>BWin</th>
40         <th>%BW</th>
41         <th>Draw</th>
42         <th>Draw%</th>
43         <th>AvWElo</th>
44         <th>AvBElo</th>
45         <th>EloVar</th>
46         <th>AWin%</th>-->
47         <!--<th class="winbars">
48           <table><tr>
49              <td class="white" style="width: 35%;">White</td>
50              <td class="draw" style="width: 30%;">Draw</td>
51              <td class="black" style="width: 35%;">Black</td>
52            </tr></table>
53         </th> -->
54       </tr>
55     </thead>
56     <tbody id="lines">
57     </tbody>
58   </table>
59 </div>
60 <!-- For faster development -->
61 <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
62 <script type="text/javascript" src="js/chessboard-0.3.0.min.js"></script>
63 <script type="text/javascript" src="js/chess.min.js"></script>
64 <script type="text/javascript" src="js/book.js"></script>
65 </body>
66 </html>