-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathapplication-error.html
executable file
·54 lines (46 loc) · 1.51 KB
/
application-error.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
<!DOCTYPE html>
<html>
<head>
<link href="https://fonts.googleapis.com/css?family=Open+Sans:400,400i,700" rel="stylesheet">
<link href='https://fonts.googleapis.com/css?family=Play:400,700' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/blockrain.css">
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<title>Application Error</title>
</head>
<body>
<header>
<h1>Application Error</h1>
<h2>Please check back later. Or play some Tetris.</h2>
</header>
<section id="examples">
<article id="example-slider">
<div class="example">
<div class="instructions">
Use only arrows
<div class="keyboard">
<div class="key key-up">▲</div>
<div class="key key-left">◄</div>
<div class="key key-down">▼</div>
<div class="key key-right">►</div>
</div>
</div>
<div class="game" id="tetris-demo"></div>
</div>
</article>
<footer>
<a id="credits" href="https://github.com/Aerolab/blockrain.js">Powered by Blockrain.js</a>
</footer>
</section>
<script src="js/jquery-1.11.1.min.js"></script>
<script src="js/blockrain.jquery.libs.js"></script>
<script src="js/blockrain.jquery.src.js"></script>
<script src="js/blockrain.jquery.themes.js"></script>
<script>
var $demo = $('#tetris-demo').blockrain({
theme: 'pontoon',
playText: ''
});
</script>
</body>
</html>