-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.html
62 lines (61 loc) · 2.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Ostinato Library Examples</title>
<link href='https://fonts.googleapis.com/css?family=Open+Sans:300' rel='stylesheet' type='text/css'>
<style>
body {
padding: 0px;
margin: 0px;
}
footer {
position: fixed; bottom: 0px; width: 100%; height: 50px; background-color: gray; color: white;
line-height: 50px;
padding-left: 15px;
}
footer a {
font-family: "Open Sans", sans-serif;
font-size: 14px;
text-decoration: none;
color: white;
padding-right: 15px;
}
footer a:hover {
text-decoration: underline;
}
section {
padding-left: 15px;
}
section ul li {
margin-bottom: 10px;
}
section ul li a {
color: rgb(0, 0, 238);
}
</style>
</head>
<section>
<h1>Ostinato Library Examples</h1>
<ul>
<li><a href="/ostinato-examples/autoplay.html">Chess Auto-play</a><br/> a chess match played by AI on both sides</li>
<li><a href="/ostinato-examples/parser.html">Chess Match Parser</a><br/> parse a chess match in any known notation</li>
<li><a href="/ostinato-examples/convert.html">Chess Match Converter</a><br/> convert any match from any notation to any notation</li>
<li><a href="/ostinato-examples/play.html">Chess Game</a><br/> play a game against a basic AI</li>
</ul>
</section>
<section>
<h1>Documentation</h1>
<ul>
<li><a href="/ostinato/docs">Scaladoc</a></li>
<li><a href="https://marianogappa.github.io/software/2017/03/24/ostinato-a-chess-engine-written-in-scala-that-runs-on-the-browser-docker-and-the-repl/">Blogpost</a></li>
</ul>
</section>
<body>
<footer>
<a href="https://twitter.com/MarianoGappa">@MarianoGappa</a> <a href="https://github.com/MarianoGappa/ostinato">Ostinato Library</a> <a href="https://github.com/MarianoGappa/ostinato/issues">Bug Report</a>
<a href="https://twitter.com/share" class="twitter-share-button"{count} data-hashtags="ostinato">Tweet</a>
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+'://platform.twitter.com/widgets.js';fjs.parentNode.insertBefore(js,fjs);}}(document, 'script', 'twitter-wjs');</script>
</footer>
</body>
</html>