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

10
index.php Normal file
View File

@@ -0,0 +1,10 @@
<?php
$page = $_GET['page'] ?? 'home';
$allowed_pages = ['home', 'about', 'contact'];
$page = in_array($page, $allowed_pages) ? $page : 'home';
include 'includes/header.php';
include "templates/{$page}.php";
include 'includes/footer.php';
?>