diff options
author | Jonas Kohl | 2024-09-06 13:19:19 +0200 |
---|---|---|
committer | Jonas Kohl | 2024-09-06 13:19:19 +0200 |
commit | 2d8a37e7ac46aa100f2e460b024d21bae2883f5b (patch) | |
tree | f845d1f13c9fa6487b07bcb0d908ffa13463cdf8 /pages/start.php | |
parent | 4da448fe73005e3f3a57671575f99555793adb06 (diff) |
Move from SSI to PHP
Diffstat (limited to 'pages/start.php')
-rw-r--r-- | pages/start.php | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/pages/start.php b/pages/start.php new file mode 100644 index 0000000..bbfeed6 --- /dev/null +++ b/pages/start.php @@ -0,0 +1,18 @@ +<?php $PAGE_TITLE = "Startseite"; ?> +<?php include __DIR__ . "/../includes/template_start.php"; ?> + +<h1 align="center">Herzlich willkommen bei der <i>Mystic House Corner</i>!</h1> + +<center> +<table bgcolor="olive" cellspacing="0" cellpadding="2"><tr><td> +<table bgcolor="yellow" cellspacing="0" cellpadding="12"><tr><td> +<table bgcolor="yellow" cellspacing="0" cellpadding="0"><tr><td> +<nobr><img src="../images/warn16.gif"> </nobr> +</td><td width="100%"> +<font color="black"><b>Achtung:</b> Diese Seite befindet sich noch im Aufbau!</font> +</td></tr></table> +</td></tr></table> +</td></tr></table> +</center> + +<?php include __DIR__ . "/../includes/template_end.php"; ?> |