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