22 lines
489 B
PHP
22 lines
489 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/** @var string $templatePath */
|
|
/** @var string $title */
|
|
?>
|
|
<!doctype html>
|
|
<html lang="ru">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title><?= htmlspecialchars($title ?? 'Рыбсток', ENT_QUOTES, 'UTF-8') ?></title>
|
|
<link rel="stylesheet" href="/assets/css/app.css">
|
|
</head>
|
|
<body>
|
|
<main class="page">
|
|
<?php require $templatePath; ?>
|
|
</main>
|
|
</body>
|
|
</html>
|