SMP all works
This commit is contained in:
20
semester-4/СмП/lb-4/src/templates/layout.php
Normal file
20
semester-4/СмП/lb-4/src/templates/layout.php
Normal 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>
|
Reference in New Issue
Block a user