Initial dev export (exclude uploads/runtime)

This commit is contained in:
AudioCore Bot
2026-03-04 20:46:11 +00:00
commit b2afadd539
120 changed files with 20410 additions and 0 deletions

12
views/site/404.php Normal file
View File

@@ -0,0 +1,12 @@
<?php
$pageTitle = $title ?? 'Not Found';
ob_start();
?>
<section class="card">
<div class="badge">404</div>
<h1 style="margin-top:16px; font-size:28px;"><?= htmlspecialchars($title ?? 'Not Found', ENT_QUOTES, 'UTF-8') ?></h1>
<p style="color:var(--muted);"><?= htmlspecialchars($message ?? 'Missing page', ENT_QUOTES, 'UTF-8') ?></p>
</section>
<?php
$content = ob_get_clean();
require __DIR__ . '/layout.php';