1
0
Files
nure/semester-4/СмП/lb-4/src/templates/layout.php
Sytnyk Yehor d22b7ddcaf SMP all works
2025-06-05 12:21:37 +03:00

21 lines
439 B
PHP

<!DOCTYPE html>
<html lang="uk">
<head>
<meta charset="UTF-8">
<title><?php echo htmlspecialchars($title ?? 'Продовольчий магазин "Весна"'); ?></title>
<link rel="stylesheet" href="public/css/style.css">
</head>
<body>
<?php include 'components/header.php'; ?>
<div class="container">
<?php echo $content; ?>
</div>
<?php include 'components/footer.php'; ?>
</body>
</html>