forked from Shadowss/TravianZ
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathimpressum.php
More file actions
186 lines (131 loc) · 5.18 KB
/
Copy pathimpressum.php
File metadata and controls
186 lines (131 loc) · 5.18 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
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
<?php
#################################################################################
## -= YOU MAY NOT REMOVE OR CHANGE THIS NOTICE =- ##
## --------------------------------------------------------------------------- ##
## Filename : impressum.php ##
## --------------------------------------------------------------------------- ##
## Refactored by : Shadow ##
## --------------------------------------------------------------------------- ##
## Project : TravianZ ##
#################################################################################
use App\Utils\AccessLogger;
include_once("GameEngine/config.php");
include_once("GameEngine/Database.php");
include_once("GameEngine/Lang/".LANG.".php");
AccessLogger::logRequest();
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title><?php echo SERVER_NAME; ?> - Impressum</title>
<link rel="stylesheet" type="text/css" href="img/tutorial/main.css"/>
<link rel="stylesheet" type="text/css" href="img/tutorial/flaggs.css"/>
<meta name="content-language" content="en"/>
<meta http-equiv="imagetoolbar" content="no"/>
<script src="mt-core.js" type="text/javascript"></script>
<script src="new.js" type="text/javascript"></script>
<!-- 🔥 INLINE CSS FIX (footer + layout safe) -->
<style type="text/css">
body {
margin: 0;
padding: 0;
}
.wrapper {
min-height: 100vh;
}
.grit {
overflow: hidden; /* FIX FLOAT BUG */
}
/* 🔥 FOOTER 100% VIZIBIL */
.footer {
clear: both;
width: 100%;
height: 60px;
margin-top: 30px;
display: block;
background: #0f0f0f;
border-top: 2px solid #333;
text-align: center;
color: #bbb;
font-size: 12px;
line-height: 60px;
font-family: Arial, Helvetica, sans-serif;
}
.footer:before {
content: "TravianZ by Shadow © 2010-" attr(data-year);
}
/* optional polish */
a {
color: #d4b87a;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
</style>
</head>
<body class="webkit contentPage">
<div class="wrapper">
<div id="country_select"></div>
<div id="header">
<h1>Welcome to <?php echo SERVER_NAME; ?></h1>
</div>
<div id="navigation">
<a href="index.php" class="home">
<img src="img/x.gif" alt="Travian"/>
</a>
<table class="menu">
<tr>
<td><a href="tutorial.php"><span>Tutorial</span></a></td>
<td><a href="anleitung.php"><span>Manual</span></a></td>
<td><a href="https://github.com/Shadowss/TravianZ/discussions" target="_blank"><span>Forum</span></a></td>
<td><a href="index.php?signup"><span>Register</span></a></td>
<td><a href="index.php?login"><span>Login</span></a></td>
</tr>
</table>
</div>
<div id="content">
<div class="grit">
<h1>Impressum</h1>
<p class="submenu">
<b>Project:</b><br/>
TravianZ by Shadow<br/><br/>
<b>Initiator & Lead Developer:</b><br/>
Shadow (Catalin Novgorodschi)<br/><br/>
<b>About this Project:</b><br/>
Open-source Travian 3.6 engine modernization project focused on performance,
stability and gameplay preservation.<br/><br/>
<b>Main Goals:</b><br/>
- Preserve classic Travian gameplay<br/>
- Refactor legacy codebase<br/>
- Improve performance and stability<br/>
- Add new tribes and mechanics<br/>
- Maintain community-driven development<br/><br/>
<b>Source Code:</b><br/>
<a href="https://github.com/Shadowss/TravianZ" target="_blank">
https://github.com/Shadowss/TravianZ
</a><br/><br/>
<b>Disclaimer:</b><br/>
This is an unofficial fan-made project and is not affiliated with Travian Games GmbH.<br/><br/>
© 2010-<?php echo date('Y'); ?> TravianZ Project
</p>
<!-- 🔥 FOOTER FIXED -->
<div class="footer" data-year="<?php echo date('Y'); ?>"></div>
</div>
</div>
</div>
<!-- overlay -->
<div id="iframe_layer" class="overlay">
<div class="mask closer"></div>
<div class="overlay_content">
<a href="index.php" class="closer">
<img class="dynamic_img" alt="Close" src="img/un/x.gif" />
</a>
<h2>Anleitung</h2>
<div id="frame_box"></div>
<div class="footer" data-year="<?php echo date('Y'); ?>"></div>
</div>
</div>
</body>
</html>