-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
36 lines (27 loc) · 992 Bytes
/
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>
<meta charset='utf-8'>
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<title>Ephemerides!</title>
<link rel="icon" href="/mmmdatmoon.png">
<link rel="apple-touch-icon" href="images/scorpio-icon-60x60.png">
<link rel="apple-touch-icon" sizes="76x76" href="images/scorpio-icon-76x76.png">
<link rel="apple-touch-icon" sizes="120x120" href="images/scorpio-icon-120x120.png">
<link rel="apple-touch-icon" sizes="152x152" href="images/scorpio-icon-152x152.png">
<link rel="stylesheet" href="ephemeris.css">
<script src='thirdparty/spin.min.js'></script>
<script src='thirdparty/moment.min.js'></script>
<script src='milky.js'></script>
<script src='ephemeris.js'></script>
</head>
<body>
<div id="content" class="hidden">
<div id="positions"></div>
<div id="info"></div>
</div>
<div id="spinner"></div>
<canvas id="galaxy" class="hidden"></canvas>
</body>
</html>