Add configuration system

This commit is contained in:
Gogs
2026-07-06 17:17:31 +02:00
parent fe8342772d
commit 566ddacb2f
13 changed files with 318 additions and 176 deletions
+25
View File
@@ -0,0 +1,25 @@
<!doctype html>
<html lang="de">
<head>
<meta charset="utf-8">
<title><?= htmlspecialchars($title ?? 'TVGuide') ?></title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/assets/css/main.css">
</head>
<body>
<header class="topbar">
<h1>TVGuide</h1>
<nav>
<a href="/">Heute</a>
<a href="/?view=now">Jetzt</a>
<a href="/?view=primetime">20:15</a>
</nav>
</header>
<main>
<?php require $contentTemplate; ?>
</main>
<script src="/assets/js/app.js"></script>
</body>
</html>