summaryrefslogtreecommitdiff
path: root/resources/views/layouts/setup.phtml
blob: 695285412e85a6c094d35f2522bb17d196413bf2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?php use Fisharebest\Webtrees\I18N; ?>
<!DOCTYPE html>
<html <?= I18N::htmlAttributes() ?>>
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1">

        <title><?= I18N::translate('Setup wizard for webtrees') ?></title>

        <link rel="icon" href="favicon.ico" type="image/x-icon">
        <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.2/css/bootstrap.min.css" integrity="sha384-Smlep5jCw/wG7hdkwQ/Z5nLIefveQRIY9nfy6xoR1uRYBtpZgI6339F5dgvm/e9B" crossorigin="anonymous">
    </head>

    <body class="container">
        <h1 class="text-info">
            <?= I18N::translate('Setup wizard for webtrees') ?>
        </h1>

        <?= $content ?>
    </body>
</html>