-
Notifications
You must be signed in to change notification settings - Fork 16
/
index.html
62 lines (58 loc) · 2.51 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="ja" xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width" />
<link rel="stylesheet" href="black.css" />
<!-- for webapp support -->
<link rel="apple-touch-icon" sizes="180x180" href="webapp-resources/apple-touch-icon.png" />
<link rel="icon" type="image/png" href="webapp-resources/favicon-32x32.png" sizes="32x32" />
<link rel="icon" type="image/png" href="webapp-resources/favicon-16x16.png" sizes="16x16" />
<link rel="manifest" href="webapp-manifest.json" />
<link rel="mask-icon" href="webapp-resources/safari-pinned-tab.svg" color="#5bbad5" />
<link rel="shortcut icon" href="webapp-resources/favicon.ico" />
<meta name="apple-mobile-web-app-title" content="Ingress Glyph Tools" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
<meta name="application-name" content="Ingress Glyph Tools" />
<meta name="msapplication-config" content="webapp-browserconfig.xml" />
<meta name="theme-color" content="#ffffff" />
<script type="text/javascript" src="webapp-resources/common.js" charset="utf-8"></script>
<title>Ingress Glyph Tools</title>
<style>
a.igt-button {
display: block;
text-decoration: none;
}
ul {
list-style-type: none;
display: table;
border-collapse: separate;
border-spacing: 4px;
}
li {
display: table-row;
text-align: center;
}
</style>
</head>
<body>
<h1>Ingress Glyph Tools</h1>
<h2>Practice</h2>
<ul>
<li><a class="igt-button" href="example-glyph-list.html">Glyphs</a></li>
<li><a class="igt-button" href="example-glyph-sequences.html">Sequences</a></li>
<li><a class="igt-button" href="example-glyph-game.html">Glyph Game</a></li>
<li><a class="igt-button" href="example-glyph-exercises-level1.html">Exercise(Level1)</a></li>
<li><a class="igt-button" href="example-glyph-record.html">Glyph Hack Record</a></li>
</ul>
<h2>Tool</h2>
<ul>
<li><a class="igt-button" href="input-pad-example.html">Input Pad</a></li>
<li><a class="igt-button" href="example-glyph-image-maker.html">Glyph Image Maker</a></li>
<li><a class="igt-button" href="example-glyph-writer.html">Glyph Writer</a></li>
</ul>
<h2>Source Code</h2>
<p><a href="http://github.com/gm9/ingress-glyph-tools">Github</a></p>
</body>
</html>