-
Notifications
You must be signed in to change notification settings - Fork 11
/
index.html
34 lines (34 loc) · 1.79 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>chess-console</title>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, user-scalable=yes, initial-scale=1.0"/>
<meta http-equiv="X-UA-Compatible" content="ie=edge"/>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
<link rel="stylesheet" href="assets/styles/screen.css">
</head>
<body>
<div class="container-fluid">
<h1>chess-console</h1>
<h2>A component based JavaScript chess client GUI, based on <a href="">cm-chessboard</a> and
<a href="">Bootstrap 5</a></h2>
<h3>Examples</h3>
<ul>
<li><a href="./examples/minimal.html">Minimal setup, without persistence</a></li>
<li><a href="./examples/play-both-local.html">Play both opponents local</a></li>
<li><a href="./examples/game-with-random.html">Play a game against chess.js (random moves)</a></li>
<li><a href="./examples/different-style.html">Styling the chessboard</a></li>
<li><a href="./examples/load-pgn.html">Load a game from a PGN</a></li>
<li><a href="./examples/load-pgn-with-setup.html">Load a game from a PGN with [SetUp "1"] and FEN</a></li>
<li><a href="./examples/test-promotion.html">Test the cm-chessboard promotion plugin</a></li>
<li><a href="https://shaack.com/projekte/chess-console-stockfish/">StockfishPlayer for chess-console</a></li>
</ul>
<h3>References</h3>
<ul>
<li><a href="https://github.com/shaack/chess-console">GitHub repository</a></li>
<li><a href="https://github.com/shaack/chess-console-stockfish">StockfishPlayer for chess-console</a></li>
</ul>
</div>
</body>
</html>