1<?php use Fisharebest\Webtrees\I18N; ?> 2<!DOCTYPE html> 3<html dir="<?= I18N::locale()->direction() ?>" lang="<?= I18N::locale()->languageTag() ?>"> 4 <head> 5 <meta charset="UTF-8"> 6 <meta name="viewport" content="width=device-width, initial-scale=1"> 7 8 <title><?= I18N::translate('Setup wizard for webtrees') ?></title> 9 10 <link rel="icon" href="favicon.ico" type="image/x-icon"> 11 <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 </head> 13 14 <body class="container"> 15 <h1 class="text-info"> 16 <?= I18N::translate('Setup wizard for webtrees') ?> 17 </h1> 18 19 <?= $content ?> 20 </body> 21</html> 22