forked from play-curious/blockchain-battle-game
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
150 lines (129 loc) · 5.24 KB
/
Copy pathindex.html
File metadata and controls
150 lines (129 loc) · 5.24 KB
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<title>Crypto Brain Game - Episode 1</title>
<link href="game.css" rel="stylesheet"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<meta name="description" content=""/>
<!-- Twitter and FB metadata -->
<meta name="twitter:card" content="player"/>
<meta name="twitter:site" content="@DrCryptoBrain"/>
<meta property="og:type" content="game"/>
<meta property="og:title" content="Crypto Brain Game - Episode 1"/>
<meta property="og:description" content="Dive into cybersecurity through the role of a hacker, discovering how blockchain and cryptocurrencies work. Use real concepts such as hash functions and digital signatures to detect fraudulent activity and even hack the system for your own ends."/>
<meta property="og:url" content="https://cryptobrain.game"/>
<meta property="og:image" content="https://ibb.co/gT2TVfy"/>
<meta name="twitter:player" content="https://www.youtube.com/embed/NY_Nz77Ks8"/>
<meta name="twitter:player:width" content="560"/>
<meta name="twitter:player:height" content="315"/>
<!-- Google Analytics -->
<script>
window.ga = window.ga || function () {
(ga.q = ga.q || []).push(arguments);
};
ga.l = + new Date();
ga("create", "UA-115175051-1", "auto");
ga("set", "anonymizeIp", true);
ga("send", "pageview");
</script>
<script async="async" src="https://www.google-analytics.com/analytics.js"></script>
<!-- End Google Analytics -->
</head>
<body>
<div id="game-parent">
<canvas id="pixi-canvas"></canvas>
</div>
<div id="descriptive-content">
<h3 class="text-accent">Crypto Brain Game - Episode 1</h3>
<p>
Dive into cybersecurity through the role of a hacker, discovering how blockchain and cryptocurrencies work. Use real concepts such as hash functions and digital signatures to detect fraudulent activity and even hack the system for your own ends.
</p>
<p>
Ready for what's next?
<a href="episode2.html">Play Episode 2 of Crypto Brain Game!</a>
</p>
<h4 class="text-accent">Technical issues?</h4>
<p>
If the game isn't working correctly (no videos, no sound, etc.) please check that you are using a recent version of a compatible web browser (Firefox, Chrome or Safari).
</p>
<p>
If you're still having issues, please write us at
<i>hello</i>
AT
<i>cryptobrain</i>
DOT
<i>game</i>.
</p>
<p>A
<a href="https://cryptobrain.game/">Dr Crypto Brain</a>
game.
</p>
<p>Crypto Brain Game is <a href="https://github.com/drkavner/crypto-brain-game">open source</a>!</p>
<p class="build-info">
Built on
<%= date.toUTCString() %>, version
<%= commit %>
<%= branch %>
</p>
<div id="sharing">
<a class="twitter-share-button" href="https://twitter.com/intent/tweet?text=Je%20kiffe%20Blockchain%20Battle%20de%20%40PlayCuriousGame" data-size="large" via="@PlayCuriousGame">
Tweet
</a>
<div class="fb-share-button" data-href="https://playcurious.games/games/blockchain-battle-1" data-layout="button" data-size="large" data-mobile-iframe="true">
<a target="_blank" href="https://www.facebook.com/sharer/sharer.php?u=https%3A%2F%2Fplaycurious.games%2Fgames%blockchain-battle-1&src=sdkpreparse" class="fb-xfbml-parse-ignore">Share</a >
</div>
</div>
</div>
<!-- build:js deps.js -->
<script src="node_modules/underscore/underscore.js"></script>
<script src="node_modules/pixi.js-legacy/dist/pixi-legacy.js"></script>
<script src="node_modules/pixi-filters/dist/pixi-filters.js"></script>
<script src="node_modules/pixi-multistyle-text/dist/pixi-multistyle-text.umd.js"></script>
<script src="node_modules/howler/dist/howler.js"></script>
<script src="node_modules/fontfaceobserver/fontfaceobserver.js"></script>
<script src="node_modules/jsbi/dist/jsbi-umd.js"></script>
<!-- endbuild -->
<!-- build:js-bundle -->
<script type="module" src="src/episode1.js"></script>
<!-- endbuild -->
<!-- Twitter -->
<script>
window.twttr = (function (d, s, id) {
var js,
fjs = d.getElementsByTagName(s)[0],
t = window.twttr || {};
if (d.getElementById(id))
return t;
js = d.createElement(s);
js.id = id;
js.src = "https://platform.twitter.com/widgets.js";
fjs
.parentNode
.insertBefore(js, fjs);
t._e = [];
t.ready = function (f) {
t
._e
.push(f);
};
return t;
})(document, "script", "twitter-wjs");
</script>
<div id="fb-root"></div>
<script>
(function (d, s, id) {
var js,
fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id))
return;
js = d.createElement(s);
js.id = id;
js.src = "https://connect.facebook.net/en_EN/sdk.js#xfbml=1&version=v3.2";
fjs
.parentNode
.insertBefore(js, fjs);
})(document, "script", "facebook-jssdk");
</script>
</body>
</html>