-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
99 lines (80 loc) · 3.54 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Bozorun</title>
<meta id="viewport" name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<link rel="manifest" href="manifest.json">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta property="og:title" content="Bozorun" />
<meta property="og:url" content="http://bozorun.netlify.com" />
<meta property="og:type" content="website" />
<meta property="og:description" content="Bozonaro enfrenta seus obstáculos e inimigos diários!" />
<meta property="og:image" content="https://bozorun.netlify.com/assets/images/bozorun2020.png" />
<link rel="shortcut icon" type="image/png" href="./favicon.png">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-M6YDQS08ZR"></script>
<script>
function toggleFullscreen() {
let elem = document.querySelector("video");
if (!document.fullscreenElement) {
elem.requestFullscreen().catch(err => {
alert(`Error attempting to enable full-screen mode: ${err.message} (${err.name})`);
});
} else {
document.exitFullscreen();
}
}
</script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-M6YDQS08ZR');
</script>
<title>Bozorun</title>
<script src="https://www.w3counter.com/tracker.js?id=130015"></script>
<script type="text/javascript" src="./Bozorun.js"></script>
<script>
window.addEventListener ("touchmove", function (event) { event.preventDefault (); }, { capture: false, passive: false });
if (typeof window.devicePixelRatio != 'undefined' && window.devicePixelRatio > 2) {
var meta = document.getElementById ("viewport");
meta.setAttribute ('content', 'width=device-width, initial-scale=' + (2 / window.devicePixelRatio) + ', user-scalable=no');
}
</script>
<style>
html,body { margin: 0; padding: 0; height: 100%; overflow: hidden; }
#openfl-content { background: #000000; width: 100%; height: 100%; }
@font-face {
font-family: 'Nokia Cellphone FC Small';
src: url('flixel/fonts/nokiafc22.eot?#iefix') format('embedded-opentype'),
url('flixel/fonts/nokiafc22.woff') format('woff'),
url('flixel/fonts/nokiafc22.ttf') format('truetype'),
url('flixel/fonts/nokiafc22.svg#Nokia%20Cellphone%20FC%20Small') format('svg');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'Monsterrat';
src: url('flixel/fonts/monsterrat.eot?#iefix') format('embedded-opentype'),
url('flixel/fonts/monsterrat.woff') format('woff'),
url('flixel/fonts/monsterrat.ttf') format('truetype'),
url('flixel/fonts/monsterrat.svg#Monsterrat') format('svg');
font-weight: normal;
font-style: normal;
}
</style>
</head>
<body>
<div id="openfl-content"></div>
<script type="text/javascript">
lime.embed ("Bozorun", "openfl-content", 0, 0, { parameters: {} });
</script>
<br>
Bozorun é feito por <a href="https://twitter.com/fullynotanalien">@fullynotanalien</a>, <a href="https://twitter.com/ErikizitoX">@ErikizitoX</a> e <a href="https://instagram.com/ilcamaleontica">Inaraí</a>. </br>
Com <a href="https://code.haxe.org">Haxe</a> + <a href="https://haxeflixel.com/">HaxeFlixel</a>. <br> <br>
<a href="https://dremendes.wordpress.com">Blog antigo</a> <br>
<a href="mailto:[email protected]">Email</a> <br>
<a href="https://github.com/fullynotanalien">Github</a> <br>
</body>
</html>