xref: /webtrees/resources/views/layouts/report.phtml (revision 10e0649788c8d7d4974d81c048ca2b225df8f22e)
165cf5706SGreg Roach<?php
265cf5706SGreg Roach
3*10e06497SGreg Roachdeclare(strict_types=1);
4*10e06497SGreg Roach
565cf5706SGreg Roachuse Fisharebest\Webtrees\I18N;
665cf5706SGreg Roach
77c2c99faSGreg Roach/**
87c2c99faSGreg Roach * @var string $content
97c2c99faSGreg Roach * @var string $title
107c2c99faSGreg Roach */
117c2c99faSGreg Roach
1265cf5706SGreg Roach?>
13dd6b2bfcSGreg Roach<!DOCTYPE html>
1465cf5706SGreg Roach<html dir="<?= I18N::locale()->direction() ?>" lang="<?= I18N::locale()->languageTag() ?>">
15dd6b2bfcSGreg Roach    <head>
16dd6b2bfcSGreg Roach        <meta charset="UTF-8">
17dd6b2bfcSGreg Roach        <meta name="viewport" content="width=device-width, initial-scale=1">
18dd6b2bfcSGreg Roach
19dd6b2bfcSGreg Roach        <title><?= $title ?></title>
20dd6b2bfcSGreg Roach
211cfe16bdSGreg Roach        <link rel="icon" href="<?= e(asset('favicon.ico')) ?>" type="image/x-icon">
22dd6b2bfcSGreg Roach    </head>
2316543441SGreg Roach    <body class="container-lg wt-global wt-report-page">
24dd6b2bfcSGreg Roach        <?= $content ?>
25dd6b2bfcSGreg Roach    </body>
26dd6b2bfcSGreg Roach</html>
27