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