-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
48 lines (43 loc) · 1.55 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>¡¡Escape from the Pinkies!!</title>
<link rel="stylesheet" type="text/css" href="css/main.css">
<script type="text/javascript" src="lib/phaser.min.js"></script>
<script type="text/javascript" src="lib/underscore-min.js"></script>
<script type="text/javascript" src="js/pinky.js"></script>
<script type="text/javascript" src="js/game.js"></script>
</head>
<body>
<div class="wrapper">
<div class="logo">
<img src="assets/logo.png" />
</div>
<div class="container" id="game-container">
</div>
<div class="social">
<div class="web">
<a href="http://undefinedmethod.com/" target="_blank"><img src="assets/undefinedmethod.png" /></a>
</div>
<div class="twitter">
<a href="https://twitter.com/" target="_blank"><img src="assets/twitter.png" /></a>
</div>
</div>
</div>
<!-- Asynchronous Google Analytics snippet -->
<script>
var _gaq = _gaq || [];
var pluginUrl =
'https://www.google-analytics.com/plugins/ga/inpage_linkid.js';
_gaq.push(['_require', 'inpage_linkid', pluginUrl]);
_gaq.push(['_setAccount', 'UA-70084257-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = 'https://stats.g.doubleclick.net/dc.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</body>
</html>