1d70512abSGreg Roach<?php 2d70512abSGreg Roach 3*10e06497SGreg Roachdeclare(strict_types=1); 4*10e06497SGreg Roach 5d70512abSGreg Roachuse Fisharebest\Webtrees\I18N; 6d70512abSGreg Roach 77c2c99faSGreg Roach/** 87c2c99faSGreg Roach * @var string $content 97c2c99faSGreg Roach */ 107c2c99faSGreg Roach 11d70512abSGreg Roach?> 12dd6b2bfcSGreg Roach<!DOCTYPE html> 1365cf5706SGreg Roach<html dir="<?= I18N::locale()->direction() ?>" lang="<?= I18N::locale()->languageTag() ?>"> 14dd6b2bfcSGreg Roach <head> 15dd6b2bfcSGreg Roach <meta charset="UTF-8"> 16dd6b2bfcSGreg Roach <meta name="viewport" content="width=device-width, initial-scale=1"> 17dd6b2bfcSGreg Roach 18dd6b2bfcSGreg Roach <title><?= I18N::translate('Setup wizard for webtrees') ?></title> 19dd6b2bfcSGreg Roach 20dd6b2bfcSGreg Roach <link rel="icon" href="favicon.ico" type="image/x-icon"> 21dd6b2bfcSGreg 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"> 22dd6b2bfcSGreg Roach </head> 23dd6b2bfcSGreg Roach 2455037a57SGreg Roach <body class="container"> 25dd6b2bfcSGreg Roach <h1 class="text-info"> 26dd6b2bfcSGreg Roach <?= I18N::translate('Setup wizard for webtrees') ?> 27dd6b2bfcSGreg Roach </h1> 28dd6b2bfcSGreg Roach 29dd6b2bfcSGreg Roach <?= $content ?> 30dd6b2bfcSGreg Roach </body> 31dd6b2bfcSGreg Roach</html> 32