xref: /webtrees/resources/views/layouts/setup.phtml (revision cad4bddf0bafe1f7dd91c083a21c2ab1abf2ebb8)
1<?php
2
3use Fisharebest\Webtrees\I18N;
4
5/**
6 * @var string $content
7 */
8
9?>
10<!DOCTYPE html>
11<html dir="<?= I18N::locale()->direction() ?>" lang="<?= I18N::locale()->languageTag() ?>">
12    <head>
13        <meta charset="UTF-8">
14        <meta name="viewport" content="width=device-width, initial-scale=1">
15
16        <title><?= I18N::translate('Setup wizard for webtrees') ?></title>
17
18        <link rel="icon" href="favicon.ico" type="image/x-icon">
19        <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.2/css/bootstrap.min.css" integrity="sha384-Smlep5jCw/wG7hdkwQ/Z5nLIefveQRIY9nfy6xoR1uRYBtpZgI6339F5dgvm/e9B" crossorigin="anonymous">
20    </head>
21
22    <body class="container">
23        <h1 class="text-info">
24            <?= I18N::translate('Setup wizard for webtrees') ?>
25        </h1>
26
27        <?= $content ?>
28    </body>
29</html>
30