29 lines
No EOL
1.5 KiB
PHP
29 lines
No EOL
1.5 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title><?= htmlspecialchars(Config::get('APP_NAME', 'PhilCore')) ?></title>
|
|
<script src="https://cdn.tailwindcss.com"></script>
|
|
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&display=swap" rel="stylesheet">
|
|
<style>
|
|
.bg-grid {
|
|
background-size: 40px 40px;
|
|
background-image: linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
|
|
linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
|
|
}
|
|
</style>
|
|
</head>
|
|
<body class="bg-slate-950 text-slate-300 min-h-screen flex flex-col relative bg-grid font-sans selection:bg-rose-500 selection:text-white">
|
|
<header class="p-4 border-b border-slate-800/60 bg-slate-900/80 backdrop-blur-md sticky top-0 z-40">
|
|
<div class="container mx-auto flex justify-between items-center">
|
|
<div class="flex items-center gap-2 text-rose-500 font-bold text-xl tracking-tight">
|
|
<span>🍕</span> <?= htmlspecialchars(Config::get('APP_NAME', 'PhilCore')) ?>
|
|
</div>
|
|
<nav class="text-sm font-medium">
|
|
<a href="<?= Config::get('BASE_URL', '/') ?>" class="hover:text-rose-400 transition-colors">Home</a>
|
|
</nav>
|
|
</div>
|
|
</header>
|
|
<?php Flash::display(); ?>
|
|
<main class="flex-grow flex items-start justify-center p-6">
|