diff options
author | Jonas Kohl | 2024-09-06 17:01:01 +0200 |
---|---|---|
committer | Jonas Kohl | 2024-09-06 17:01:01 +0200 |
commit | 3d22cc3333e1265a222425a4ede9c464234e3632 (patch) | |
tree | 7acd1379c752913f12168cc75583e68b14278288 /pages/start.php | |
parent | 0540e04c77864186ce48193456634b897a11f5aa (diff) |
Small fixes; Add component system
Diffstat (limited to 'pages/start.php')
-rw-r--r-- | pages/start.php | 20 |
1 files changed, 2 insertions, 18 deletions
diff --git a/pages/start.php b/pages/start.php index 07dfd88..ce2f3cd 100644 --- a/pages/start.php +++ b/pages/start.php @@ -1,25 +1,9 @@ +<?php $NAV_LINK_ID = "start"; ?> <?php $PAGE_TITLE = "Startseite"; ?> <?php include __DIR__ . "/../includes/template_start.php"; ?> <h1 align="center">Herzlich willkommen bei der <i>Mystic House Corner</i>!</h1> -<?php if ($__mobile): ?> -<div class="alert alert-warning"> -<i class="glyphicon glyphicon-warning-sign"></i> -<b>Achtung:</b> Diese Seite befindet sich noch im Aufbau! -</div> -<?php else: ?> -<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 endif; ?> +<?php c_alert('<b>Achtung:</b> Diese Seite befindet sich noch im Aufbau!', 'warning', 'warning-sign'); ?> <?php include __DIR__ . "/../includes/template_end.php"; ?> |