-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (35 loc) · 1.25 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>
<head>
<title>Sopuko</title>
<link rel="stylesheet" type="text/css" href="./styles/main.css">
<link rel="apple-touch-icon" sizes="180x180" href="/assets/favicons/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/assets/favicons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/assets/favicons/favicon-16x16.png">
<link rel="manifest" href="/assets/site.webmanifest">
</head>
<body>
<h1>Sopuko</h1>
<div id="sopuko"></div>
<div id="help">
<section>
<h4>Modes</h4>
<div><strong>Pencil</strong>: Enters a note</div>
<div><strong>Commit</strong>: Enters your guess</div>
</section>
<section>
<h4>Shortcuts</h4>
<div><strong>1-9</strong>: Highlight number</div>
<div><strong>d</strong>: Cycle numbers</div>
<div><strong>f</strong>: Switch Mode</div>
</section>
<section>
<h4>Source</h4>
<div><a href="https://github.com/waldi/Sopuko" target="blank">waldi/Sopuko</a></div>
</section>
</div>
<script type="text/javascript" src="./scripts/helpers.js"></script>
<script type="text/javascript" src="./scripts/dom.js"></script>
<script type="text/javascript" src="./scripts/main.js"></script>
</body>
</html>