-
Notifications
You must be signed in to change notification settings - Fork 60
/
index.html
executable file
·33 lines (33 loc) · 1.74 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
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8" />
<title>Enclave Phaser Template</title>
<meta name="author" content="Enclave Games" />
<meta name="description" content="Mobile template for web games created using the Phaser game engine." />
<meta name="monetization" content="$ilp.uphold.com/k4eJGQUDF9nw" />
<style>*{margin:0;padding:0;}body{background: #ccc url(img/pattern.png) repeat; overflow:hidden;}#banner{display:none;}</style>
<meta property="og:image" content="https://enclavegames.github.io/Enclave-Phaser-Template/img/enclave-phaser-template.png" />
<meta property="og:url" content="https://enclavegames.github.io/Enclave-Phaser-Template/"/>
<meta property="og:title" content="Enclave Phaser Template" />
<meta property="og:description" content="Mobile template for web games created using the Phaser game engine." />
<meta property="og:type" content="website" />
<link rel="shortcut icon" href="favicon.ico" />
<link rel="manifest" href="ept.webmanifest" />
<script async src="https://www.googletagmanager.com/gtag/js?id=G-LEW3JXPV5X"></script>
<script src="src/plugins/webfont.js"></script>
<script src="src/phaser.3.80.1.min.js"></script>
<script src="src/utils.js"></script>
<script src="src/Boot.js"></script>
<script src="src/Preloader.js"></script>
<script src="src/MainMenu.js"></script>
<script src="src/Settings.js"></script>
<script src="src/Story.js"></script>
<script src="src/Game.js"></script>
</head>
<body>
<img id="banner" src="screens/EPT-MainMenu.png" alt="Enclave Phaser Template" />
<a href="https://github.com/EnclaveGames/Enclave-Phaser-Template/"><img style="position: absolute; top: 0; right: 0; border: 0;" src="img/fork.png" alt="Fork me on GitHub" /></a>
<script src="src/start.js"></script>
</body>
</html>