summaryrefslogtreecommitdiff
path: root/index.php
blob: 8a9bbfdb4a9e5f5012544a2f06c9f0afcd4e5cdd (plain)
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
<?php

$__mobile = include __DIR__ . "/includes/mobile-detect.php";
if ($__mobile) {
    header("Location: site.php");
    exit;
}

?>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
    <meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
    <meta http-equiv="imagetoolbar" content="no">
    <title>Mystic House Corner</title>
    <link rel="shortcut icon" href="/favicon.ico" type="image/x-icon">
</head>
<body bgcolor="black" text="white" link="yellow" vlink="yellow" alink="red">

<table width="100%" height="100%" cellspacing="0" cellpadding="0"><tr>
    <td valign="middle" align="center">
        <b>Klicken Sie auf das Bild, um die Seite zu betreten!</b><br><br>
        <a href="site.php"><img border="0" src="images/TITEL2.jpg"></a>
    </td>
</tr></table>
</body>
</html>