-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (30 loc) · 1.48 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta name="description" content="This application can be used to browse the NASA JPL Planetary Data System."/>
<meta name="keywords" content="NASA, JPL, PDS, Planetary Data System, Browser"/>
<meta name="robots" content="index, nofollow"/>
<link rel="stylesheet" href="src/assets/scss/style.scss" />
<link rel="apple-touch-icon" sizes="180x180" href="src/assets/img/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="src/assets/img/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="src/assets/img/favicon-16x16.png">
<link rel="manifest" href="site.webmanifest">
<link rel="mask-icon" href="src/assets/img/safari-pinned-tab.svg" color="#5bbad5">
<link rel="shortcut icon" href="src/assets/img/favicon.ico">
<meta name="msapplication-TileColor" content="#603cba">
<meta name="theme-color" content="#ffffff">
<title>PDS Viewer</title>
</head>
<body>
<div id="app"></div>
<noscript>
<p>This application requires JavaScript :c</p>
<p>if you want to browse the PDS without JavaScript, you can <a target="_blank" href="https://pds-imaging.jpl.nasa.gov/w10n/">browse the W10N archive directly</a>!</p>
</noscript>
<script src="src/App.tsx" type="module"></script>
</body>
</html>