Files
Progetto-PHP/PHP/includes/header.php
T
Emanuele Slusarz ec30fb40b9 first commit
2026-08-22 11:15:29 +02:00

16 lines
453 B
PHP
Executable File

<?php
$pageTitle = $pageTitle ?? "Delivery";
$basePath = $basePath ?? "..";
?>
<!DOCTYPE html>
<html lang="it">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title><?= e($pageTitle) ?> - Delivery</title>
<link rel="stylesheet" href="<?= e($basePath) ?>/css/bootstrap.min.css">
</head>
<body class="bg-light">
<?php require __DIR__ . "/navbar.php"; ?>
<main class="container py-4">