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