forked from tensorflow/minigo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
32 lines (29 loc) · 954 Bytes
/
Copy pathindex.html
File metadata and controls
32 lines (29 loc) · 954 Bytes
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
<!DOCTYPE html>
<meta charset="utf-8">
<html>
<head>
<title>Minigo</title>
<link href="style.css" rel="stylesheet">
<script type="text/javascript" src="socketio/socket.io.min.js"></script>
<style>
body {
padding: 2%;
font-family: sans-serif;
font-size: 1em;
color: #ed9;
}
h1 { font-size: 1.5em; margin-top: 0; }
a { color: white; }
</style>
</head>
<body>
<h1>Welcome to Minigui!</h1>
Choose your mode:
<ul>
<li><a href="study.html">Study</a>: study games, explore variations.</li>
<li><a href="vs.html">Vs</a>: play two engines against each other.</li>
<li><a href="demo.html">Demo</a>: the original Minigo demo.</li>
<li><a href="lw_demo.html">Leightweight Demo</a>: a lighter weight UI for lower powered devices like Raspberry Pi.</li>
<li><a href="kiosk.html">Kiosk</a>: a selfplay-only kiosk mode.</li>
</body>
</html>