-
-
Notifications
You must be signed in to change notification settings - Fork 41
/
index.html
72 lines (69 loc) · 4.35 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>BoldChess Stockfish Web GUIs</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
</head>
<body>
<!-- Header Section -->
<header class="bg-dark text-white text-center py-3">
<h1>BoldChess Stockfish Web GUIs</h1>
</header>
<!-- Main Content -->
<main class="container my-4">
<div class="row">
<!-- Implementation #1 Card -->
<div class="col-md-6 mb-4">
<a href="./implementation-1" class="text-decoration-none" rel="noopener noreferrer">
<div class="card h-100 text-center">
<div class="d-flex justify-content-center align-items-center" style="height: 200px;">
<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" fill="currentColor" class="bi bi-1-square" viewBox="0 0 16 16" aria-label="Implementation #1">
<path d="M9.283 4.002V12H7.971V5.338h-.065L6.072 6.656V5.385l1.899-1.383z" />
<path d="M0 2a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2zm15 0a1 1 0 0 0-1-1H2a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1z" />
</svg>
</div>
<div class="card-body">
<h5 class="card-title">Implementation #1</h5>
</div>
</div>
</a>
</div>
<!-- Implementation #2 Card -->
<div class="col-md-6 mb-4">
<a href="./implementation-2" class="text-decoration-none" rel="noopener noreferrer">
<div class="card h-100 text-center">
<div class="d-flex justify-content-center align-items-center" style="height: 200px;">
<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" fill="currentColor" class="bi bi-2-square" viewBox="0 0 16 16" aria-label="Implementation #2">
<path d="M6.646 6.24v.07H5.375v-.064c0-1.213.879-2.402 2.637-2.402 1.582 0 2.613.949 2.613 2.215 0 1.002-.6 1.667-1.287 2.43l-.096.107-1.974 2.22v.077h3.498V12H5.422v-.832l2.97-3.293c.434-.475.903-1.008.903-1.705 0-.744-.557-1.236-1.313-1.236-.843 0-1.336.615-1.336 1.306" />
<path d="M0 2a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2zm15 0a1 1 0 0 0-1-1H2a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1z" />
</svg>
</div>
<div class="card-body">
<h5 class="card-title">Implementation #2</h5>
</div>
</div>
</a>
</div>
</div>
</main>
<!-- Contribution Alert -->
<div class="container mb-4">
<div class="alert alert-success d-flex align-items-center justify-content-center text-center" role="alert">
Both implementations need significant improvements and updates. Join our contributors and help enhance them!
</div>
</div>
<div class="container mb-4">
<div class="alert alert-primary d-flex align-items-center justify-content-center text-center" role="alert">
It is also great to check and contribute to the official <a href="https://github.com/LabinatorSolutions/boldchess-web-app" target="_blank" rel="noopener noreferrer">BoldChess app</a>.
</div>
</div>
<!-- Footer Section -->
<footer class="bg-light text-black text-center py-3">
<p>Licensed under the <a href="https://www.gnu.org/licenses/agpl-3.0.en.html" target="_blank" rel="noopener noreferrer">AGPLv3</a> license. Powered by <a href="https://boldchess.com" target="_blank" rel="noopener noreferrer">BoldChess.com</a></p>
</footer>
<!-- Bootstrap Bundle with Popper -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous"></script>
</body>
</html>