xref: /webtrees/resources/views/layouts/default.phtml (revision abafa13c257ec871f1fb1a1926f33c2748685c38)
1dd6b2bfcSGreg Roach<?php use Fisharebest\Webtrees\DebugBar; ?>
2dd6b2bfcSGreg Roach<?php use Fisharebest\Webtrees\FlashMessages; ?>
3dd6b2bfcSGreg Roach<?php use Fisharebest\Webtrees\I18N; ?>
437eb8894SGreg Roach<?php use Fisharebest\Webtrees\Module\ModuleAnalyticsInterface; ?>
533c34396SGreg Roach<?php use Fisharebest\Webtrees\Module\ModuleFooterInterface; ?>
6*abafa13cSGreg Roach<?php use Fisharebest\Webtrees\Module\ModuleGlobalInterface; ?>
78136679eSGreg Roach<?php use Fisharebest\Webtrees\Module\ModuleThemeInterface; ?>
84ca7e03cSGreg Roach<?php use Fisharebest\Webtrees\Services\ModuleService; ?>
9dd6b2bfcSGreg Roach<?php use Fisharebest\Webtrees\View; ?>
108d0ebef0SGreg Roach<?php use Fisharebest\Webtrees\Webtrees; ?>
1197c22350SGreg Roach<?php use Symfony\Component\HttpFoundation\Request; ?>
12dd6b2bfcSGreg Roach
13dd6b2bfcSGreg Roach<!DOCTYPE html>
14e837ff07SGreg Roach<html dir="<?= I18N::direction() ?>" lang="<?= WT_LOCALE ?>">
15dd6b2bfcSGreg Roach    <head>
16dd6b2bfcSGreg Roach        <meta charset="UTF-8">
17dd6b2bfcSGreg Roach        <meta name="csrf" content="<?= e(csrf_token()) ?>">
18dd6b2bfcSGreg Roach        <meta name="viewport" content="width=device-width, initial-scale=1">
19377a2979SGreg Roach        <meta name="robots" content="<?= e($meta_robots ?? 'noindex') ?>">
208d0ebef0SGreg Roach        <meta name="generator" content="<?= e(Webtrees::NAME) ?> <?= e(Webtrees::VERSION) ?>">
21dd6b2bfcSGreg Roach        <?php if ($tree !== null) : ?>
22dd6b2bfcSGreg Roach            <meta name="description" content="<?= e($tree->getPreference('META_DESCRIPTION')) ?>">
23dd6b2bfcSGreg Roach        <?php endif ?>
24dd6b2bfcSGreg Roach
25dd6b2bfcSGreg Roach        <title>
26dd6b2bfcSGreg Roach            <?= strip_tags($title) ?>
27dd6b2bfcSGreg Roach            <?php if ($tree !== null && $tree->getPreference('META_TITLE') !== '') : ?>
28dd6b2bfcSGreg Roach<?= e($tree->getPreference('META_TITLE')) ?>
29dd6b2bfcSGreg Roach            <?php endif ?>
30dd6b2bfcSGreg Roach        </title>
31dd6b2bfcSGreg Roach
3252bcc402SGreg Roach        <!--Generic favicons-->
3352bcc402SGreg Roach        <link rel="icon" sizes="32x32" href="<?= e(asset('favicon-32.png')) ?>">
3452bcc402SGreg Roach        <link rel="icon" sizes="57x57" href="<?= e(asset('favicon-57.png')) ?>">
3552bcc402SGreg Roach        <link rel="icon" sizes="76x76" href="<?= e(asset('favicon-76.png')) ?>">
3652bcc402SGreg Roach        <link rel="icon" sizes="96x96" href="<?= e(asset('favicon-96.png')) ?>">
3752bcc402SGreg Roach        <link rel="icon" sizes="128x128" href="<?= e(asset('favicon-128.png')) ?>">
3852bcc402SGreg Roach        <link rel="icon" sizes="192x192" href="<?= e(asset('favicon-192.png')) ?>">
3952bcc402SGreg Roach        <!--Android-->
4090b733bfSGreg Roach        <link rel="shortcut icon" sizes="196x196" href="<?= e(asset('favicon-196.png')) ?>">
4152bcc402SGreg Roach        <!--iOS-->
4252bcc402SGreg Roach        <link rel="apple-touch-icon" sizes="120x120" href="<?= e(asset('favicon-120.png')) ?>">
4352bcc402SGreg Roach        <link rel="apple-touch-icon" sizes="152x152" href="<?= e(asset('favicon-152.png')) ?>">
4452bcc402SGreg Roach        <link rel="apple-touch-icon" sizes="180x180" href="<?= e(asset('favicon-180.png')) ?>">
4552bcc402SGreg Roach        <!--Windows 8 IE 10-->
4652bcc402SGreg Roach        <meta name="msapplication-TileColor" content="#FFFFFF">
4752bcc402SGreg Roach        <meta name="msapplication-TileImage" content="<?= e(asset('favicon-144.png')) ?>">
4852bcc402SGreg Roach        <!--Windows 8.1 + IE11 and above-->
4952bcc402SGreg Roach        <meta name="msapplication-config" content="<?= e(asset('browserconfig.xml')) ?>">
50dd6b2bfcSGreg Roach
51e837ff07SGreg Roach        <link rel="stylesheet" href="<?= e(asset('css/vendor.min.css')) ?>">
52cab242e7SGreg Roach        <?php foreach (app(ModuleThemeInterface::class)->stylesheets() as $stylesheet) : ?>
53e837ff07SGreg Roach            <link rel="stylesheet" href="<?=  e($stylesheet) ?>">
54dd6b2bfcSGreg Roach        <?php endforeach ?>
55dd6b2bfcSGreg Roach
56dd6b2bfcSGreg Roach        <?= View::stack('styles') ?>
57dd6b2bfcSGreg Roach
58*abafa13cSGreg Roach        <?= app(ModuleService::class)->findByInterface(ModuleGlobalInterface::class)->map(function (ModuleGlobalInterface $module): string { return $module->headContent(); })->implode('') ?>
59dd6b2bfcSGreg Roach
60dd6b2bfcSGreg Roach        <?= DebugBar::renderHead() ?>
61dd6b2bfcSGreg Roach    </head>
62dd6b2bfcSGreg Roach
634e73f0bdSGreg Roach    <body class="wt-global wt-theme-<?= e(app(ModuleThemeInterface::class)->name()) ?> wt-route-<?= e(app(Request::class)->get('route')) ?>">
64dd6b2bfcSGreg Roach        <header class="wt-header-wrapper d-print-none">
65dd6b2bfcSGreg Roach            <div class="container wt-header-container">
66dd6b2bfcSGreg Roach                <div class="row wt-header-content">
6797c22350SGreg Roach                    <div class="wt-accessibility-links position-fixed">
68dd6b2bfcSGreg Roach                        <a class="sr-only sr-only-focusable btn btn-info btn-sm" href="#content">
69dd6b2bfcSGreg Roach                            <?= /* I18N: Skip over the headers and menus, to the main content of the page */ I18N::translate('Skip to content') ?>
70dd6b2bfcSGreg Roach                        </a>
71dd6b2bfcSGreg Roach                    </div>
72dd6b2bfcSGreg Roach                    <div class="col wt-site-logo"></div>
73dd6b2bfcSGreg Roach
74dd6b2bfcSGreg Roach                    <?php if ($tree !== null) : ?>
75cc13d6d8SGreg Roach                        <h1 class="col wt-site-title"><?= e($tree->title()) ?></h1>
76dd6b2bfcSGreg Roach
77dd6b2bfcSGreg Roach                        <div class="col wt-header-search">
78dd6b2bfcSGreg Roach                            <form class="wt-header-search-form" role="search">
79dd6b2bfcSGreg Roach                                <input type="hidden" name="route" value="search-quick">
80aa6f03bbSGreg Roach                                <input type="hidden" name="ged" value="<?= e($tree->name()) ?>">
81dd6b2bfcSGreg Roach                                <div class="input-group">
82dd6b2bfcSGreg Roach                                    <label class="sr-only" for="quick-search"><?= I18N::translate('Search') ?></label>
83dd6b2bfcSGreg Roach                                    <input type="search" class="form-control wt-header-search-field" id="quick-search" name="query" size="15" placeholder="<?= I18N::translate('Search') ?>">
84dd6b2bfcSGreg Roach                                    <span class="input-group-btn">
85dd6b2bfcSGreg Roach                                        <button type="submit" class="btn btn-primary wt-header-search-button">
86dd6b2bfcSGreg Roach                                            <?= view('icons/search') ?>
87dd6b2bfcSGreg Roach                                        </button>
88dd6b2bfcSGreg Roach                                    </span>
89dd6b2bfcSGreg Roach                                </div>
90dd6b2bfcSGreg Roach                            </form>
91dd6b2bfcSGreg Roach                        </div>
92dd6b2bfcSGreg Roach                    <?php endif ?>
93dd6b2bfcSGreg Roach
94dd6b2bfcSGreg Roach                    <div class="col wt-secondary-navigation">
950c8c69d4SGreg Roach                        <ul class="nav wt-user-menu">
96cab242e7SGreg Roach                            <?php foreach (app(ModuleThemeInterface::class)->userMenu($tree) as $menu) : ?>
97dd6b2bfcSGreg Roach                                <?= $menu->bootstrap4() ?>
98dd6b2bfcSGreg Roach                            <?php endforeach ?>
99dd6b2bfcSGreg Roach                        </ul>
100dd6b2bfcSGreg Roach                    </div>
101dd6b2bfcSGreg Roach
102dd6b2bfcSGreg Roach                    <?php if ($tree !== null) : ?>
103dd6b2bfcSGreg Roach                    <nav class="col wt-primary-navigation">
1040c8c69d4SGreg Roach                        <ul class="nav wt-genealogy-menu">
105cab242e7SGreg Roach                            <?php foreach (app(ModuleThemeInterface::class)->genealogyMenu($tree) as $menu) : ?>
106dd6b2bfcSGreg Roach                                <?= $menu->bootstrap4() ?>
107dd6b2bfcSGreg Roach                            <?php endforeach ?>
108dd6b2bfcSGreg Roach                        </ul>
109dd6b2bfcSGreg Roach                    </nav>
110dd6b2bfcSGreg Roach                    <?php endif ?>
111dd6b2bfcSGreg Roach                </div>
112dd6b2bfcSGreg Roach            </div>
113dd6b2bfcSGreg Roach        </header>
114dd6b2bfcSGreg Roach
115dd6b2bfcSGreg Roach        <main id="content" class="wt-main-wrapper">
116dd6b2bfcSGreg Roach            <div class="container wt-main-container">
117dd6b2bfcSGreg Roach                <div class="flash-messages">
118dd6b2bfcSGreg Roach                    <?php foreach (FlashMessages::getMessages() as $message) : ?>
119dd6b2bfcSGreg Roach                        <div class="alert alert-<?= e($message->status) ?> alert-dismissible" role="alert">
120dd6b2bfcSGreg Roach                            <button type="button" class="close" data-dismiss="alert" aria-label="<?= I18N::translate('close') ?>">
121dd6b2bfcSGreg Roach                                <span aria-hidden="true">&times;</span>
122dd6b2bfcSGreg Roach                            </button>
123dd6b2bfcSGreg Roach                            <?= $message->text ?>
124dd6b2bfcSGreg Roach                        </div>
125dd6b2bfcSGreg Roach                    <?php endforeach ?>
126dd6b2bfcSGreg Roach                </div>
127dd6b2bfcSGreg Roach
128dd6b2bfcSGreg Roach                <?= $content ?>
129dd6b2bfcSGreg Roach            </div>
130dd6b2bfcSGreg Roach        </main>
131dd6b2bfcSGreg Roach
13297c22350SGreg Roach        <footer class="wt-footers container d-print-none">
133cab242e7SGreg Roach            <?= app(ModuleService::class)->findByInterface(ModuleFooterInterface::class)->map(function (ModuleFooterInterface $module) use ($tree): string { return $module->getFooter($tree); })->implode('') ?>
134dd6b2bfcSGreg Roach        </footer>
135dd6b2bfcSGreg Roach
136ad727080SGreg Roach        <script src="<?= e(asset('js/vendor.min.js')) ?>"></script>
137ad727080SGreg Roach        <script src="<?= e(asset('js/webtrees.min.js')) ?>"></script>
138dd6b2bfcSGreg Roach
139dd6b2bfcSGreg Roach        <script>
140dd6b2bfcSGreg Roach      activate_colorbox();
141dd6b2bfcSGreg Roach      jQuery.extend(jQuery.colorbox.settings, {
142dd6b2bfcSGreg Roach       width: "85%",
143dd6b2bfcSGreg Roach       height: "85%",
144dd6b2bfcSGreg Roach       transition: "none",
145dd6b2bfcSGreg Roach       slideshowStart: "<?= I18N::translate('Play') ?>",
146dd6b2bfcSGreg Roach       slideshowStop: "<?= I18N::translate('Stop') ?>",
147dd6b2bfcSGreg Roach       title: function() { return this.dataset.title; }
148dd6b2bfcSGreg Roach      });
149dd6b2bfcSGreg Roach    </script>
150dd6b2bfcSGreg Roach
151dd6b2bfcSGreg Roach        <?= View::stack('javascript') ?>
152dd6b2bfcSGreg Roach
153*abafa13cSGreg Roach        <?= app(ModuleService::class)->findByInterface(ModuleGlobalInterface::class)->map(function (ModuleGlobalInterface $module): string { return $module->bodyContent(); })->implode('') ?>
154*abafa13cSGreg Roach
155dd6b2bfcSGreg Roach        <?= DebugBar::render() ?>
156dd6b2bfcSGreg Roach    </body>
157dd6b2bfcSGreg Roach</html>
158