summaryrefslogtreecommitdiff
path: root/resources/views/layouts/report.phtml
blob: 18f14ed622a8c10a0ccb7d660febf3a19b8a5b8e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?php

declare(strict_types=1);

use Fisharebest\Webtrees\I18N;

/**
 * @var string $content
 * @var string $title
 */

?>
<!DOCTYPE html>
<html dir="<?= I18N::locale()->direction() ?>" lang="<?= I18N::locale()->languageTag() ?>">
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1">

        <title><?= $title ?></title>

        <link rel="icon" href="<?= e(asset('favicon.ico')) ?>" type="image/x-icon">
    </head>
    <body class="container-lg wt-global wt-report-page">
        <?= $content ?>
    </body>
</html>