59 lines
1.8 KiB
PHP
Executable File
59 lines
1.8 KiB
PHP
Executable File
<?php
|
|
|
|
use Din9xtrCloud\ViewModels\LayoutViewModel;
|
|
|
|
/** @var LayoutViewModel $viewModel */
|
|
$page = $viewModel->page;
|
|
?>
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title><?= htmlspecialchars($page->title() ?? 'Cloud App') ?></title>
|
|
<!-- Favicon / App icons -->
|
|
<link rel="icon" href="/favicon.ico">
|
|
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
|
|
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
|
|
<link rel="apple-touch-icon" href="/apple-touch-icon.png">
|
|
<link rel="manifest" href="/site.webmanifest">
|
|
<link rel="stylesheet" href=/assets/cloud.css>
|
|
</head>
|
|
<body>
|
|
|
|
|
|
<?php if ($page->layoutConfig->header === 'default'): ?>
|
|
<header>
|
|
<nav class="navbar">
|
|
<span class="navbar-brand">Cloud Control Panel</span>
|
|
<a href="/" class="back-link">👈 Back</a>
|
|
|
|
</nav>
|
|
</header>
|
|
<?php else: ?>
|
|
<?php
|
|
$headerFile = __DIR__ . '/../headers/' . $page->layoutConfig->header . '.php';
|
|
if (file_exists($headerFile)):
|
|
include $headerFile;
|
|
?>
|
|
<?php endif; ?>
|
|
<?php endif; ?>
|
|
|
|
<main class="container">
|
|
<?= $viewModel->content ?>
|
|
|
|
</main>
|
|
<?php if ($page->layoutConfig->showFooter): ?>
|
|
|
|
<footer>
|
|
<p>© <?= date('Y') ?> Cloud Control Panel.
|
|
<a href="/license" style="color: #667eea; text-decoration: none; transition: color 0.3s ease;"
|
|
onmouseover="this.style.color='#764ba2'; this.style.textDecoration='underline'"
|
|
onmouseout="this.style.color='#667eea'; this.style.textDecoration='none'">
|
|
MIT License
|
|
</a>
|
|
</p>
|
|
</footer>
|
|
<?php endif; ?>
|
|
</body>
|
|
</html>
|