diff options
Diffstat (limited to 'resources/views/layouts/setup.phtml')
| -rw-r--r-- | resources/views/layouts/setup.phtml | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/resources/views/layouts/setup.phtml b/resources/views/layouts/setup.phtml new file mode 100644 index 0000000000..695285412e --- /dev/null +++ b/resources/views/layouts/setup.phtml @@ -0,0 +1,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> |
