-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.php
50 lines (42 loc) · 1.34 KB
/
index.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
<?php
header("Content-Type: text/html;charset=utf-8");
require_once("libraries/language.php");
// Cache the page
$max_cache_lifetime = 1800;
require_once("libraries/cache.php");
// Make HTML as small as possible!
require_once("libraries/minimize.php");
?>
<!DOCTYPE HTML>
<html lang="<?php echo $_SESSION["language"]; ?>">
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<meta name="robots" content="index, follow">
<link rel="icon" type="image/x-icon" href="/favicon.ico">
<link rel="stylesheet" type="text/css" href="/includes/css/style.css">
<link rel="stylesheet" type="text/css" href="/includes/css/menu.css">
<?php
print_hreflang();
?>
<script defer src="/includes/js/jquery-latest.min.js"></script>
<script defer src="/includes/js/script.js"></script>
<title>Icon-Craft.net</title>
</head>
<body>
<br />
<table border="0" align="center" class="index_table">
<tr>
<td colspan="2" class="index_header"><?php include "includes/header.php"; ?></td>
</tr>
<tr>
<td colspan="2" class="index_menu"><?php include "includes/menu.php"; ?></td>
</tr>
<tr>
<td class="index_site_left"><?php include "includes/uptime.php"; ?></td>
<td class="index_site_right">3</td>
</tr>
<tr>
<td colspan="2" class="index_footer"><?php include "includes/footer.php"; ?></td>
<tr>
</table>
</body></html>