diff options
Diffstat (limited to 'pages')
-rw-r--r-- | pages/about.php (renamed from pages/about.html) | 8 | ||||
-rw-r--r-- | pages/dekomp.html | 6 | ||||
-rw-r--r-- | pages/dekomp.php | 6 | ||||
-rw-r--r-- | pages/exklusiv.html | 6 | ||||
-rw-r--r-- | pages/exklusiv.php | 6 | ||||
-rw-r--r-- | pages/loesung.php (renamed from pages/loesung.html) | 6 | ||||
-rw-r--r-- | pages/sent.php (renamed from pages/sent.html) | 4 | ||||
-rw-r--r-- | pages/start.php (renamed from pages/start.html) | 6 | ||||
-rw-r--r-- | pages/trivia.html | 6 | ||||
-rw-r--r-- | pages/trivia.php | 6 |
10 files changed, 30 insertions, 30 deletions
diff --git a/pages/about.html b/pages/about.php index 7d25dbf..09d5771 100644 --- a/pages/about.html +++ b/pages/about.php @@ -1,5 +1,5 @@ -<!--#set var="PAGE_TITLE" value="Ueber"--> -<!--#include virtual="../includes/template_head_start.html"--> +<?php $PAGE_TITLE = "Ueber"; ?> +<?php include __DIR__ . "/../includes/template_head_start.php"; ?> <style type="text/css"> <!-- textarea, input { @@ -20,7 +20,7 @@ button { } --> </style> -<!--#include virtual="../includes/template_head_end.html"--> +<?php include __DIR__ . "/../includes/template_head_end.php"; ?> <h1>Über die Mystic House Corner</h1> @@ -64,4 +64,4 @@ Mystic House Corner: Ein Projekt von Jan W. und Jonas K. </table> </form> -<!--#include virtual="../includes/template_end.html"--> +<?php include __DIR__ . "/../includes/template_end.php"; ?> diff --git a/pages/dekomp.html b/pages/dekomp.html deleted file mode 100644 index 2bfaa74..0000000 --- a/pages/dekomp.html +++ /dev/null @@ -1,6 +0,0 @@ -<!--#include virtual="../includes/template_start.html"--> - -<h1>Dekomp</h1> -<p><i>Coming soon...</i></p> - -<!--#include virtual="../includes/template_end.html"--> diff --git a/pages/dekomp.php b/pages/dekomp.php new file mode 100644 index 0000000..503e782 --- /dev/null +++ b/pages/dekomp.php @@ -0,0 +1,6 @@ +<?php include __DIR__ . "/../includes/template_start.php"; ?> + +<h1>Dekomp</h1> +<p><i>Coming soon...</i></p> + +<?php include __DIR__ . "/../includes/template_end.php"; ?> diff --git a/pages/exklusiv.html b/pages/exklusiv.html deleted file mode 100644 index 655f955..0000000 --- a/pages/exklusiv.html +++ /dev/null @@ -1,6 +0,0 @@ -<!--#include virtual="../includes/template_start.html"--> - -<h1>Exklusiv</h1> -<p><i>Coming soon...</i></p> - -<!--#include virtual="../includes/template_end.html"--> diff --git a/pages/exklusiv.php b/pages/exklusiv.php new file mode 100644 index 0000000..6272748 --- /dev/null +++ b/pages/exklusiv.php @@ -0,0 +1,6 @@ +<?php include __DIR__ . "/../includes/template_start.php"; ?> + +<h1>Exklusiv</h1> +<p><i>Coming soon...</i></p> + +<?php include __DIR__ . "/../includes/template_end.php"; ?> diff --git a/pages/loesung.html b/pages/loesung.php index e17cb5c..3812e88 100644 --- a/pages/loesung.html +++ b/pages/loesung.php @@ -1,5 +1,5 @@ -<!--#set var="PAGE_TITLE" value="Lösung"--> -<!--#include virtual="../includes/template_start.html"--> +<?php $PAGE_TITLE = "Lösung"; ?> +<?php include __DIR__ . "/../includes/template_start.php"; ?> <h1>Mystic House - Die Komplettlösung</h1> <p>Ein Hinweis vorweg: Es kann nicht schaden, hin und wieder zu speichern.</p> @@ -72,4 +72,4 @@ passieren, wenn er mit der Cremedose eingefettet wurde.</p> <p>Nach dem nächsten Schritt landen Sie beim Obergeist McMoss. Geben Sie ihm die Antworten 1-1-1-1 und Sie haben es geschafft.</p> -<!--#include virtual="../includes/template_end.html"--> +<?php include __DIR__ . "/../includes/template_end.php"; ?> diff --git a/pages/sent.html b/pages/sent.php index 2449d76..e0a0125 100644 --- a/pages/sent.html +++ b/pages/sent.php @@ -1,4 +1,4 @@ -<!--#include virtual="../includes/template_start.html"--> +<?php include __DIR__ . "/../includes/template_start.php"; ?> <table bgcolor="green" cellspacing="0" cellpadding="2"><tr><td> <table bgcolor="lime" cellspacing="0" cellpadding="12"><tr><td> @@ -6,4 +6,4 @@ </td></tr></table> </td></tr></table> -<!--#include virtual="../includes/template_end.html"--> +<?php include __DIR__ . "/../includes/template_end.php"; ?> diff --git a/pages/start.html b/pages/start.php index af115aa..bbfeed6 100644 --- a/pages/start.html +++ b/pages/start.php @@ -1,5 +1,5 @@ -<!--#set var="PAGE_TITLE" value="Startseite"--> -<!--#include virtual="../includes/template_start.html"--> +<?php $PAGE_TITLE = "Startseite"; ?> +<?php include __DIR__ . "/../includes/template_start.php"; ?> <h1 align="center">Herzlich willkommen bei der <i>Mystic House Corner</i>!</h1> @@ -15,4 +15,4 @@ </td></tr></table> </center> -<!--#include virtual="../includes/template_end.html"--> +<?php include __DIR__ . "/../includes/template_end.php"; ?> diff --git a/pages/trivia.html b/pages/trivia.html deleted file mode 100644 index e650b8c..0000000 --- a/pages/trivia.html +++ /dev/null @@ -1,6 +0,0 @@ -<!--#include virtual="../includes/template_start.html"--> - -<h1>Trivia</h1> -<p><i>Coming soon...</i></p> - -<!--#include virtual="../includes/template_end.html"--> diff --git a/pages/trivia.php b/pages/trivia.php new file mode 100644 index 0000000..30f79a3 --- /dev/null +++ b/pages/trivia.php @@ -0,0 +1,6 @@ +<?php include __DIR__ . "/../includes/template_start.php"; ?> + +<h1>Trivia</h1> +<p><i>Coming soon...</i></p> + +<?php include __DIR__ . "/../includes/template_end.php"; ?> |