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