1<!DOCTYPE HTML>
2<html>
3
4<!--
5  pgn4web javascript chessboard
6  copyright (C) 2009-2015 Paolo Casaschi
7  see README file and http://pgn4web.casaschi.net
8  for credits, license and more details
9-->
10
11<head>
12
13<title>pgn4web bare template</title>
14
15<link rel="icon" sizes="16x16" href="pawn.ico" />
16
17<!-- bugfix: uncomment following HTML code to cope with
18     the occasional short-length buttons/controls at
19     first load; latest browsers should not be affected
20     see http://pgn4web-project.casaschi.net/tickets/67/
21<style type="text/css">.whiteSquare { width:40px; }</style>
22-->
23
24<script src="pgn4web.js" type="text/javascript"></script>
25<script type="text/javascript">
26   "use strict";
27   SetPgnUrl("demoGames.pgn"); // if set, this has precedence over the inline PGN in the HTML file
28</script>
29
30</head>
31
32<body>
33
34<!-- paste your PGN below and make sure you dont specify an external source with SetPgnUrl() -->
35<form style="display: none;"><textarea style="display: none;" id="pgnText">
36
37</textarea></form>
38<!-- paste your PGN above and make sure you dont specify an external source with SetPgnUrl() -->
39
40<h1>Personal account on Kramnik and the Petrov</h1>
41
42<table cellpadding=0 cellspacing=0 border=0>
43<tr valign=top>
44
45<td width=333>
46<div id="GameSelector"></div>
47<div id="GameSearch"></div>
48<p></p>
49<div id="GameBoard"></div>
50<p></p>
51<div id="GameButtons"></div>
52</td>
53
54<td>
55<span class="label">Event:</span> <span id="GameEvent"></span>
56<br>
57<span class="label">Site:</span> <span id="GameSite"></span>
58<br>
59<span class="label">Round:</span> <span id="GameRound"></span>
60<br>
61<span class="label">Date:</span> <span id="GameDate"></span>
62<p></p>
63<span class="label">White:</span> <span id="GameWhite"></span>
64<br>
65<span class="label">Black:</span> <span id="GameBlack"></span>
66<br>
67<span class="label">Result:</span> <span id="GameResult"></span>
68<p>
69<span class="label">Side to move:</span> <span id="GameSideToMove"></span>
70<br>
71<span class="label">Last move:</span> <span id="GameLastMove"></span>&nbsp; <span class="label">variations:</span> <span id="GameLastVariations"></span>
72<br>
73<span class="label">Next move:</span> <span id="GameNextMove"></span>&nbsp; <span class="label">variations:</span> <span id="GameNextVariations"></span>
74<p></p>
75<span class="label">Move comment:</span><br><span id="GameLastComment"></span>
76</td>
77
78</tr>
79</table>
80
81<p></p>
82<hr>
83
84<div id="GameText"></div>
85
86</body>
87
88</html>
89