49 lines
2.2 KiB
PHP
49 lines
2.2 KiB
PHP
<?php
|
|
$metaTitle = isset($pageTitle) ? $pageTitle . ' | Fotobox Moments' : 'Fotobox Moments';
|
|
$isAdminArea = str_contains($viewPath, '/admin/');
|
|
$styleVersion = is_file(dirname(__DIR__) . '/assets/styles.css') ? (string) filemtime(dirname(__DIR__) . '/assets/styles.css') : '1';
|
|
$scriptVersion = is_file(dirname(__DIR__) . '/assets/app.js') ? (string) filemtime(dirname(__DIR__) . '/assets/app.js') : '1';
|
|
?>
|
|
<!DOCTYPE html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title><?= h($metaTitle) ?></title>
|
|
<meta name="description" content="Fotobox mieten mit einfacher Online-Anfrage, flexibler Lieferung und kompletter Admin-Verwaltung.">
|
|
<link rel="stylesheet" href="<?= h(asset('assets/styles.css')) ?>?v=<?= h($styleVersion) ?>">
|
|
<script defer src="<?= h(asset('assets/app.js')) ?>?v=<?= h($scriptVersion) ?>"></script>
|
|
</head>
|
|
<body class="<?= $isAdminArea ? 'theme-admin' : 'theme-public' ?>">
|
|
<div class="page-shell">
|
|
<header class="site-header">
|
|
<a class="brand" href="<?= h($isAdminArea ? url('admin') : url('/')) ?>">
|
|
<span class="brand-mark">FM</span>
|
|
<span>
|
|
<strong>Fotobox Moments</strong>
|
|
<small>Vermietung & Verwaltung</small>
|
|
</span>
|
|
</a>
|
|
<nav class="site-nav">
|
|
<?php if ($isAdminArea): ?>
|
|
<a href="<?= h(url('admin')) ?>">Dashboard</a>
|
|
<a href="<?= h(url('admin/create')) ?>">Bestellung anlegen</a>
|
|
<form method="post" action="<?= h(url('admin/logout')) ?>">
|
|
<button type="submit" class="ghost-button">Logout</button>
|
|
</form>
|
|
<?php else: ?>
|
|
<a href="#leistungen">Leistungen</a>
|
|
<a href="#ablauf">Ablauf</a>
|
|
<a href="#faq">FAQ</a>
|
|
<a class="primary-link" href="#buchung">Verfuegbarkeit pruefen</a>
|
|
<?php endif; ?>
|
|
</nav>
|
|
</header>
|
|
|
|
<main>
|
|
<?php require $viewPath; ?>
|
|
</main>
|
|
</div>
|
|
</body>
|
|
</html>
|