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