15 lines
459 B
PHP
15 lines
459 B
PHP
<!doctype html>
|
|
|
|
<html lang="en-US">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
<link rel="stylesheet" href="/assets/css/style.css">
|
|
<script src="/assets/js/bootstrap.js"></script>
|
|
<title><?= esc($title) ?></title>
|
|
</head>
|
|
<?= $this->include('components/header')?>
|
|
<?= $this->renderSection('content')?>
|
|
<?= $this->include('components/footer')?>
|
|
</html>
|