16 lines
453 B
PHP
Executable File
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">
|