45 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			45 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
---
 | 
						|
layout: default
 | 
						|
---
 | 
						|
 | 
						|
<div class="col-xs-12 col-sm-10 col-sm-offset-1">
 | 
						|
  <h1>{{ page.title }}</h1>
 | 
						|
  {{ content }}
 | 
						|
</div>
 | 
						|
 | 
						|
<div id="GameWrapper" class="col-xs-12 col-sm-10 col-sm-offset-1">
 | 
						|
  <strong><span id="GameWhite"></span> vs. <span id="GameBlack"></span> • <span id="GameResult"></span></strong>
 | 
						|
 | 
						|
  <p></p>
 | 
						|
 | 
						|
  <div id="GameBoardWrapper">
 | 
						|
    <div id="GameSelector"></div>
 | 
						|
    <p></p>
 | 
						|
    <div id="GameBoard"></div>
 | 
						|
    <p></p>
 | 
						|
    <div id="GameButtons"></div>
 | 
						|
 | 
						|
    <div id="GameTextWrapper">
 | 
						|
      <div id="GameText"></div>
 | 
						|
    </div>
 | 
						|
  </div>
 | 
						|
 | 
						|
  <p></p>
 | 
						|
 | 
						|
  <div id="GameMoveComment"></div>
 | 
						|
</div>
 | 
						|
 | 
						|
<!-- pgn4web JavaScript -->
 | 
						|
{% javascript pgn4web %}
 | 
						|
 | 
						|
<script type="text/javascript">
 | 
						|
 "use strict";
 | 
						|
 | 
						|
 SetPgnUrl("{{ page.pgn }}");
 | 
						|
 SetImagePath("/assets/img/chesspieces/wikipedia");
 | 
						|
 SetImageType("png");
 | 
						|
 SetGameSelectorOptions("Выбрать партию ...", false, 0, 0, 0, 15, 15, 0, 10); // (head, num, chEvent, chSite, chRound, chWhite, chBlack, chResult, chDate);
 | 
						|
 SetCommentsIntoMoveText(false);
 | 
						|
 SetShortcutKeysEnabled(true);
 | 
						|
</script>
 |