-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
38 lines (33 loc) · 1.11 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
<!DOCTYPE html>
<html>
<head>
<title>PlanetaryXR</title>
<meta charset="utf-8">
<meta title="PlanetaryXR">
<meta name="description" content="A mixed-reality solar system, featuring 3D maps and models of planetary bodies">
<meta name="viewport" content="width=device-width, minimum-scale=1.0, maximum-scale=1.0, initial-scale=1.0, user-scalable=no, minimal-ui">
<!-- STYLES -->
<link href="https://fonts.googleapis.com/css?family=Ubuntu:300,300i,500" rel="stylesheet">
<link href="https://use.fontawesome.com/bde36a6fc9.css" rel="stylesheet">
<link href="./css/app.css" rel="stylesheet">
<!-- SCRIPTS -->
<script>
window.onload = () => {
// Insert current year
const date = document.querySelector('#date')
if (date) {
date.innerHTML = new Date().getFullYear()
}
}
</script>
</head>
<body>
<div class="start-page">
<h1>PlanetaryXR</h1>
<a href="./ar.html">AR</a> / <a href="./vr.html">VR</a>
</div>
<footer>
<p>Site & contents © <a href="https://myleslewando.com">Myles Lewando</a> 2016 - <span id="date"></span></p>
</footer>
</body>
</html>