summaryrefslogtreecommitdiff
path: root/resources/views/layouts/report.php
blob: c9f4eab0df301e9d6fc648c60bed4e0a0e88b963 (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>