]> git.sesse.net Git - remoteglot/blob - www/book.html
Add some opening book stuff that is still under development, and really should be...
[remoteglot] / 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   </div>
21 </div>
22 <div id="analysis">
23   <table>
24     <thead>
25       <tr>
26         <th>Move</th>
27         <th>Games</th>
28         <th>%</th>
29         <th>Win%</th>
30         <th>WElo</th>
31         <th>BElo</th>
32         <th>AWin%</th>
33         <!--<th class="winbars">
34           <table><tr>
35              <td class="white" style="width: 35%;">White</td>
36              <td class="draw" style="width: 30%;">Draw</td>
37              <td class="black" style="width: 35%;">Black</td>
38            </tr></table>
39         </th> -->
40       </tr>
41     </thead>
42     <tbody id="lines">
43     </tbody>
44   </table>
45 </div>
46 <!-- For faster development -->
47 <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
48 <script type="text/javascript" src="js/chessboard-0.3.0.min.js"></script>
49 <script type="text/javascript" src="js/chess.min.js"></script>
50 <script type="text/javascript" src="js/book.js"></script>
51 </body>
52 </html>