27 lines
758 B
PHP
27 lines
758 B
PHP
<?php
|
|
/**
|
|
* @var string $title;
|
|
* @var string $content;
|
|
*/
|
|
?>
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title><?php echo $title ?></title>
|
|
<link rel="stylesheet" href="/vendor/twbs/bootstrap/dist/css/bootstrap.css">
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet"
|
|
integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous" />
|
|
<script src="/public/js/ajax.js"></script>
|
|
<link rel="stylesheet" href="/public/style/main.css">
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col-12">
|
|
<?php echo $content ?>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|