-
Notifications
You must be signed in to change notification settings - Fork 21
/
404.php
57 lines (56 loc) · 2.86 KB
/
404.php
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
<?php
#################################################################################
## ##
## -= YOU MUST NOT REMOVE OR CHANGE THIS NOTICE =- ##
## ##
## --------------------------------------------------------------------------- ##
## ##
## Project: ZravianX ##
## Version: 2011.10.30 ##
## Filename: 404.php ##
## Developed by: Dzoki & SlimShady95 ##
## Edited by: ZZJHONS ##
## License: Creative Commons BY-NC-SA 3.0 ##
## Copyright: ZravianX (c) 2011 - All rights reserved ##
## URLs: http://zravianx.zzjhons.com ##
## Source code: http://www.github.com/ZZJHONS/ZravianX ##
## ##
#################################################################################
include('GameEngine/Account.php');
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title><?php echo SERVER_NAME; ?></title>
<link rel="shortcut icon" href="favicon.ico" />
<meta name="content-language" content="<?php echo LANG; ?>" />
<meta http-equiv="imagetoolbar" content="no" />
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<script src="mt-core.js" type="text/javascript"></script>
<script src="unx.js" type="text/javascript"></script>
<script src="new.js" type="text/javascript"></script>
<link href="<?php echo GP_LOCATE; ?>lang/en/compact.css" rel="stylesheet" type="text/css" />
<link href="<<?php echo GP_LOCATE; ?>lang/en/lang.css" rel="stylesheet" type="text/css" />
<link href="<?php echo GP_LOCATE; ?>/travian.css" rel="stylesheet" type="text/css" />
</head>
<body class="v35">
<div class="wrapper">
<div id="dynamic_header"></div>
<div id="header"></div>
<div id="mid">
<?php include("Templates/menu.tpl"); ?>
<div id="content" class="error_site">
<?php include ("Templates/404.tpl"); ?>
</div>
</div>
<div id="side_info" class="outgame">
<?php include("Templates/news.tpl"); ?>
</div>
<div class="clear"></div>
</div>
<div class="footer-stopper outgame"></div>
<div class="clear"></div>
<?php include("Templates/footer.tpl"); ?>
<div id="ce"></div>
</body>
</html>