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