forked from github/game-off-2016
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·72 lines (62 loc) · 2.17 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
63
64
65
66
67
68
69
70
71
72
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Console Cowboys by Rothschild Games</title>
<meta name="description" content="Can you jam with the console cowboys in cyberspace?" />
<meta property="og:title" content="Console Cowboys"/>
<meta property="og:description" content="Can you jam with the console cowboys in cyberspace?" />
<!--<meta property="og:image" content="http://rothschildgames.github.io/appatk/images/share-image.png" />-->
<!--<meta property="og:url" content="http://rothschildgames.github.io/appatk/" />-->
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<meta name="HandheldFriendly" content="True">
<meta name="MobileOptimized" content="320">
<meta http-equiv="cleartype" content="on">
<style>
html,
body {
margin: 0;
padding: 0;
user-select: none;
-webkit-user-select: none;
background: #d4d4d4;
}
footer {
text-align: center;
margin: 30px 0;
padding-top: 30px;
border-top: 1px solid #999;
color: #777;
font-family: 'Helvetica', sans-serif;
font-size: 11px;
}
footer a {
color: #333;
}
#content canvas{
margin: 0 auto;
}
</style>
</head>
<body>
<div id="content"></div>
<script src="dist/bundle.js"></script>
<footer>
<p class='less-space'>
Game created by
<a href="https://github.com/RothschildGames/" target="_blank">Rothschild Games</a>
-
<a href="https://twitter.com/shayhdavidson" target="_blank">@shayhdavidson</a>
&
<a href="https://twitter.com/yonbergman" target="_blank">@yonbergman</a>
</p>
<p>
for
<a href="https://github.com/blog/2274-game-off-theme-announcement" target="_blank">GitHub Game Off 2016</a>
•
view the source on
<a href="https://github.com/RothschildGames/console-cowboys" target="_blank">GitHub</a>
</p>
</footer>
</body>
</html>