-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcontainer.htm
106 lines (93 loc) · 3.69 KB
/
container.htm
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
<!--
!
! Trial of Bloodright
! Standalone page for
!
! Coin Ritual
!
! INDEX
! All Language / Language selector
!
! Copyright 2017 CWG
! Clan Wolf Gamma
! http://www.clanwolf.net
!
! This page is the landing page for the ToB coin ritual.
! It cointains a selector for one of the provided languages:
! en / de / ru
!
! -->
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="description" content="ToB - Trial of Bloodright">
<meta name="keywords" content="BattleTech, MechWarrior, Clan, Wolf, Mech, BattleMech, MadCat, TimberWolf, Seyla, Kerensky, Bloodright, ToB">
<meta http-equiv="content-language" content="en">
<meta name="robots" content="INDEX,FOLLOW">
<link rel="icon" type="image/png" href="favicon-32x32.png" sizes="32x32" />
<link rel="icon" type="image/png" href="favicon-16x16.png" sizes="16x16" />
<link href="https://fonts.googleapis.com/css?family=Orbitron" rel='stylesheet'>
<link href="https://fonts.googleapis.com/css?family=Share+Tech+Mono" rel="stylesheet">
<link rel="stylesheet" href="css/stylesheet.css">
<script src="https://use.fontawesome.com/908b97f3a3.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.0/jquery.min.js"></script>
<script type="text/javascript" src="js/script.js"></script>
<script type="text/javascript" src="js/cookies.js"></script>
<script type="text/javascript" src="js/animation.js"></script>
<script type="text/javascript" src="js/typewriter.js"></script>
<script type="text/javascript" src="js/howler.min.js"></script>
<script type="text/javascript" src="js/sound.js"></script>
</head>
<body>
<div class="selected_flag">
<a href="#">
<script type="text/javascript">
var lang = getCookie("tob_language");
if ((lang !== null) && (typeof lang != 'undefined')) {
document.write("<img name='flag' id='flag' src='img/flag/" + lang + ".png' width='30px' onclick='fadeoutcontent_redirect(\"index.htm\", 1000);'>");
} else {
document.write("<img name='flag' id='flag' src='img/flag/empty.png' width='30px' onclick='fadeoutcontent_redirect(\"index.htm\", 1000);'>");
/* No language was selected. Redirect to index.htm! */
fadeoutcontent_redirect('index.htm', 0);
}
</script>
</a>
</div>
<div class="head_structure" id="headstructure" style="z-index: 20;"></div>
<div class="mech_left"><img name="galaxy" src="img/timberwolf-left.png" width="330px"></div>
<div class="mech_right"><img name="galaxy" src="img/timberwolf-right.png" width="330px"></div>
<div id="contentwindow" class="content2">
<div id="typedtext"></div>
</div>
<div class="content_language_selector" style="top: -1px; z-index: 0;">
<table style="width: 300px; border-collapse: collapse; border-spacing: 0px; border: 0px; margin: 0px; padding: 0px;">
<tr>
<td style="padding: 0px;" width="100px" style="text-align:right;">
<img src="img/selector_left.png"
width="100px"
height="550px">
</td>
<td style="padding: 0px;" width="100px" style="text-align:center;">
<img src="img/selector_center.png"
width="100px"
height="550px">
</td>
<td style="padding: 0px;" width="100px" style="text-align:left;">
<img src="img/selector_right.png"
width="100px"
height="550px">
</td>
</tr>
</table>
</div>
<div class="bottom">
<script type="text/javascript">
if (sound === "on") {
document.write("<span id='soundswitch'><a href='#' onclick='setSoundOff();'><i class='fa fa-volume-up fa-3x' aria-hidden='true'></i></span>");
} else {
document.write("<span id='soundswitch'><a href='#' onclick='setSoundOn();'><i class='fa fa-volume-off fa-3x' aria-hidden='true'></i></span>");
}
</script>
</div>
</body>
</html>