-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (43 loc) · 1.65 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Multisplode</title>
<!-- styles -->
<link rel="stylesheet" type="text/css" href="./css/import-file.css">
<link rel="shortcut icon" href="./favicon.ico">
<!-- content -->
<meta name="description" content="Enjoy explosive action in Multisplode! Play directly in your browser!">
<meta name="keywords" content="multisplode, game, multiplayer, online, browser, action, fun, explosive">
<!-- pwa settings -->
<link rel="manifest" href="./manifest.json">
<meta name="theme-color" content="#111D5D">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, viewport-fit=cover">
<meta name="screen-orientation" content="landscape">
<meta name="mobile-web-app-capable" content="yes">
<!-- ios pwa settings -->
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<meta name="apple-mobile-web-app-title" content="Multisplode">
<link rel="apple-touch-icon" href="./images/icons/icon-512.png">
<link rel="icon" sizes="192x192" href="./images/icons/icon-192.png">
<!-- more pwa settings -->
<meta name="msapplication-TileImage" content="./images/icons/icon-192.png">
<meta name="msapplication-TileColor" content="#111D5D">
<base href="./">
</head>
<body>
<!-- alert js error -->
<noscript>You need to enable JavaScript to run this app.</noscript>
<script type="module">
import { AppController } from './src/app-controller.js';
/**
* This will start the app.
*
* @global
* @type {object} app
*/
const app = new AppController();
</script>
</body>
</html>