Deploy from Lumerel

This commit is contained in:
Lumerel Deploy
2026-02-14 23:00:52 +00:00
commit 5d0874eab1
14 changed files with 443 additions and 0 deletions

7
includes/footer.php Normal file
View File

@@ -0,0 +1,7 @@
</main>
<footer>
<p>&copy; <?= date('Y') ?> <?= SiteConfig::SITE_NAME ?>. All rights reserved.</p>
</footer>
<script src="/assets/js/main.js"></script>
</body>
</html>

19
includes/header.php Normal file
View File

@@ -0,0 +1,19 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title><?php echo $pageTitle; ?></title>
<link rel="stylesheet" href="/assets/css/style.css">
</head>
<body>
<header>
<nav>
<ul>
<li><a href="/">Home</a></li>
<li><a href="/about">About</a></li>
<li><a href="/contact">Contact</a></li>
</ul>
</nav>
</header>
<main>