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