blob: 95f5b6238ad7e99db6ab1eb622fe866673505a60 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<?php use Fisharebest\Webtrees\DebugBar; ?>
<?php use Fisharebest\Webtrees\I18N; ?>
<!DOCTYPE html>
<html <?= I18N::htmlAttributes() ?>>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title><?= $title ?></title>
<link rel="icon" href="favicon.ico" type="image/x-icon">
<?= DebugBar::renderHead() ?>
</head>
<body class="container wt-global wt-report-page">
<?= $content ?>
<?= DebugBar::render() ?>
</body>
</html>
|