-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy patholdindex.htm
More file actions
133 lines (118 loc) · 4.86 KB
/
oldindex.htm
File metadata and controls
133 lines (118 loc) · 4.86 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
<!--
!
! 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/cookies.js"></script>
<script type="text/javascript" src="js/script.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 onload="move_languageselector_down();">
<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='move_languageselector_down();'>");
} else {
document.write("<img name='flag' id='flag' src='img/flag/empty.png' width='30px' onclick='move_languageselector_down();'>");
}
$("#flag").fadeOut("slow");
</script>
</a>
</div>
<div class="galaxy_symbol">
<img name="galaxy" src="img/WolfEmpty.png" width="90px">
</div>
<div name="movable" id="1000" class="top_background"></div>
<div class="head_structure" id="headstructure"></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="content">
<script type="text/javascript">
$("#contentwindow").fadeOut(0);
</script>
<div id="typedtext"></div>
<div class="fastforwardbutton"><a href="container.htm" style="font-family: 'Arial', sans-serif; font: normal 28px 'Arial';">>>></a></div>
</div>
<div name="movable" id="1010" class="fire">
<img src="img/fire.gif" width="90px" height="180px">
</div>
<div name="movable" id="1020" class="content_language_selector">
<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;">
<a class="tooltip" onclick="move_languageselector_up('en');" href="#">
<span class="tooltiptext">Enter</span>
<img src="img/selector_left.png"
width="100px"
height="550px"
onmouseover="changeImage('galaxy','galaxyImage_Alpha');"
onmouseout="changeImage('galaxy','galaxyImage_Empty');">
</a>
</td>
<td style="padding: 0px;" width="100px" style="text-align:center;">
<a class="tooltip" onclick="move_languageselector_up('de');" href="#">
<span class="tooltiptext">Betreten</span>
<img src="img/selector_center.png"
width="100px"
height="550px"
onmouseover="changeImage('galaxy','galaxyImage_Gamma');"
onmouseout="changeImage('galaxy','galaxyImage_Empty');">
</a>
</td>
<td style="padding: 0px;" width="100px" style="text-align:left;">
<a class="tooltip" onclick="move_languageselector_up('ru');" href="#">
<span class="tooltiptext">войти</span>
<img src="img/selector_right.png"
width="100px"
height="550px"
onmouseover="changeImage('galaxy','galaxyImage_Beta');"
onmouseout="changeImage('galaxy','galaxyImage_Empty');">
</a>
</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>