summaryrefslogtreecommitdiff
path: root/resources/views/layouts
diff options
context:
space:
mode:
Diffstat (limited to 'resources/views/layouts')
-rw-r--r--resources/views/layouts/report.php20
1 files changed, 20 insertions, 0 deletions
diff --git a/resources/views/layouts/report.php b/resources/views/layouts/report.php
new file mode 100644
index 0000000000..c9f4eab0df
--- /dev/null
+++ b/resources/views/layouts/report.php
@@ -0,0 +1,20 @@
+<?php use Fisharebest\Webtrees\DebugBar; ?>
+<?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><?= $title ?></title>
+
+ <link rel="icon" href="favicon.ico" type="image/x-icon">
+
+ <?= DebugBar::renderHead() ?>
+ </head>
+ <body class="container wt-global wt-report-page">
+ <?= $content ?>
+
+ <?= DebugBar::render() ?>
+ </body>
+</html>