1
0

SMP all works

This commit is contained in:
Sytnyk Yehor
2025-06-05 12:21:37 +03:00
parent bdcbdb850a
commit d22b7ddcaf
34 changed files with 4932 additions and 0 deletions

View File

@ -0,0 +1,20 @@
<!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>