-
Notifications
You must be signed in to change notification settings - Fork 11
/
index.html
executable file
·59 lines (52 loc) · 3.03 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
<!DOCTYPE html>
<!--
Copyright (C) 2014-2024 Krisztián Nagy
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
-->
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="Krisztián Nagy"/>
<meta name="theme-color" content="#222222"/>
<meta http-equiv="Content-Security-Policy" content="default-src 'self' https://armada-analytics.herokuapp.com https://armada-missions.herokuapp.com wss://armada-multi.herokuapp.com 'sha256-RstlOf3UjqJ3VkWySGsp3ekccxPGxuhPO8eIUYT4I9c='">
<link rel="icon" href="assets/images/favicon.ico"/>
<!-- Open Graph properties -->
<meta property="og:title" content="Interstellar Armada"/>
<meta property="og:type" content="website"/>
<meta property="og:url" content="http://nkrisztian89.github.io/interstellar-armada/"/>
<meta property="og:image" content="http://nkrisztian89.github.io/interstellar-armada/assets/images/splash/1.png"/>
<meta property="og:image:width" content="400"/>
<meta property="og:image:height" content="270"/>
<meta property="og:description" content="A JavaScript/WebGL space combat game by Krisztián Nagy, currently in development."/>
<title>Interstellar Armada</title>
<link href="css/general.css" rel="stylesheet" type="text/css"/>
</head>
<body ondragstart="return false;" ondrop="return false;">
<div id="splashBackground">
<div id="splashContainer" class="horizontallyCentered contentWide outerContainer pageContainer">
<script>
var splashImage = new Image();
splashImage.id = "splashImage";
splashImage.class = "horizontallyCentered";
splashImage.src = "assets/images/splash/" + (Math.floor(Math.random() * 4.9999) + 1).toString() + ".png";
document.getElementById("splashContainer").appendChild(splashImage);
splashImage = undefined;
</script>
<progress id="splashProgress" class="horizontallyCentered" value="0" max="100"></progress>
</div>
</div>
<script data-main="js/main.js" src="assets/libs/require.min.js"></script>
<img class="orientation" src="assets/images/orientation.png" alt="Rotate or resize your screen to landscape orientation">
<div id="gameVersion" class="gameVersion"></div>
</body>
</html>