-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
62 lines (62 loc) · 2.88 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
60
61
62
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Bloquake</title>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<meta name="title" content="Bloquake"/>
<meta name="description" content="Smash boxes and foes to progress through the stages!"/>
<meta name="keywords" content="bloquake, smash, boxes, ethan fine, finesden"/>
<meta name="author" content="Ethan S. Fine"/>
<meta name="og:title" content="Bloquake"/>
<meta name="og:description" content="Smash boxes and foes to progress through the stages!"/>
<meta name="og:image" content="https://finesden.com/bloquake/bloquake_preview.jpg"/>
<meta name="og:image:width" content="800"/>
<meta name="og:image:height" content="400"/>
<meta name="og:site_name" content="Bloquake"/>
<meta name="og:type" content="website"/>
<meta name="og:url" content="https://finesden.com/bloquake/"/>
<meta name="og:pubdate" content="2020-04-05T15:32:59.453Z"/>
<meta name="twitter:title" content="Bloquake"/>
<meta name="twitter:description" content="Smash boxes and foes to progress through the stages!"/>
<meta name="twitter:image" content="https://finesden.com/bloquake/bloquake_preview.jpg"/>
<meta name="twitter:card" content="summary_large_image"/>
<meta name="twitter:image:alt" content="Bloquake"/>
<meta itemprop="name" content="Bloquake"/>
<meta itemprop="description" content="Smash boxes and foes to progress through the stages!"/>
<meta name="theme-color" content="black"/>
<link rel="icon" type="image/png" href="assets/9d453875-5881-4d4d-9b6e-3359c045fdfc.png"/>
<link rel="stylesheet" type="text/css" href="styleSheet.css"/>
<script src='https://cdn1.kongregate.com/javascripts/kongregate_api.js'></script>
<script type="text/javascript" src="jquery-1.12.1.min.js"></script>
<script type="text/javascript" src="gamelab-api.js"></script>
<script type="text/javascript" src="p5.js"></script>
<script type="text/javascript" src="p5.play.js"></script>
<script type="text/javascript">
kongregateAPI.loadAPI(function(){
window.kongregate = kongregateAPI.getAPI();
});
</script>
<script type="text/javascript" src="code.js"></script>
<script type="text/javascript">
window.addEventListener("keydown", function(e) {
if([32, 37, 38, 39, 40].indexOf(e.keyCode) > -1) {
e.preventDefault();
}
}, false);
</script>
</head>
<body>
<div class="container web">
<div id="sketch" class="web"><div class="loader"><img src="./box_jump.gif" id="xp5_loading"/></div></div>
<div id="soft-buttons" class="soft-buttons-none">
<button id="leftButton" disabled className="arrow"></button>
<button id="rightButton" disabled className="arrow"></button>
<button id="upButton" disabled className="arrow"></button>
<button id="downButton" disabled className="arrow"></button>
</div>
<div id="studio-dpad-container"></div>
</div>
<a href="Bloquake Dev log.txt" class="changelog"></a>
</body>
</html>