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