-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (30 loc) · 1.49 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
35
36
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8"/>
<title>Yacge - Yet Another Chess Game Engine - by pvdz</title>
<link rel="stylesheet" href="secrets.css"/>
<meta name="author" content="Peter van der Zee, pvdz, kuvos"/>
<meta name="description" content="Yacge, Yet Another Chess Game Engine and Chess Board as in vanilla html, css, and js with zero dependencies"/>
<meta name="keywords" content="chess, board, ai, rules, pgn, fen, bishop, knight, rook, king, queen, pawn, yacge, engine, game"/>
</head>
<body>
<h1>Yacge; Yet Another Chess Game Engine, © Peter van der Zee, <a href="https://pvdz.ee" target="_blank">pvdz.ee</a>, December 2023. Source on <a href="https://github.com/pvdz/yacge" target="_blank">GitHub</a>.</h1>
<script src="game.js" type="module"></script>
<!-- <script src="utils.js"></script>-->
<!-- <script src="constants.js"></script>-->
<!-- <script src="parser.js"></script>-->
<!-- <script src="serialize.js"></script>-->
<!-- <script src="history.js"></script>-->
<!-- <script src="single-bit.js"></script>-->
<!-- <script src="pawns.js"></script>-->
<!-- <script src="knights.js"></script>-->
<!-- <script src="kings.js"></script>-->
<!-- <script src="pgn.js"></script>-->
<!-- <script src="board.js"></script>-->
<!-- <script src="menu.js"></script>-->
<!-- <script src="chess.js"></script>-->
<!-- <script src="ui.js"></script>-->
<!-- <script src="game.js"></script>-->
</body>
</html>