firstPHP/views/layouts/admin_layout.php

26 lines
700 B
PHP
Raw Normal View History

2024-04-15 17:46:33 +03:00
<?php
/**
* @var string $title;
* @var string $content;
*/
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title><?php echo $title ?></title>
2024-04-16 17:13:42 +03:00
<link rel="stylesheet" href="/vendor/twbs/bootstrap/dist/css/bootstrap.css">
2024-04-15 17:46:33 +03:00
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous" />
2024-04-16 17:13:42 +03:00
<script src="/public/js/ajax.js"></script>
2024-04-15 17:46:33 +03:00
</head>
<body>
<div class="container">
<div class="row">
<div class="col-12">
<?php echo $content ?>
</div>
</div>
</div>
</body>
</html>