summaryrefslogtreecommitdiff
path: root/resources/views/layouts
diff options
context:
space:
mode:
Diffstat (limited to 'resources/views/layouts')
-rw-r--r--resources/views/layouts/setup.php21
1 files changed, 21 insertions, 0 deletions
diff --git a/resources/views/layouts/setup.php b/resources/views/layouts/setup.php
new file mode 100644
index 0000000000..19de717569
--- /dev/null
+++ b/resources/views/layouts/setup.php
@@ -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://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.2/css/bootstrap.min.css" integrity="sha384-PsH8R72JQ3SOdhVi3uxftmaW6Vc51MKb0q5P2rRUpPvrszuE4W1povHYgTpBfshb" crossorigin="anonymous">
+ </head>
+
+ <body class="container">
+ <h1 class="text-info">
+ <?= I18N::translate('Setup wizard for webtrees') ?>
+ </h1>
+
+ <?= $content ?>
+ </body>
+</html>