16ccdf4f0SGreg Roach<?php 26ccdf4f0SGreg Roach 310e06497SGreg Roachdeclare(strict_types=1); 410e06497SGreg Roach 56ccdf4f0SGreg Roachuse Fisharebest\Webtrees\FlashMessages; 6d36fce8cSGreg Roachuse Fisharebest\Webtrees\Http\RequestHandlers\AppleTouchIconPng; 7d36fce8cSGreg Roachuse Fisharebest\Webtrees\Http\RequestHandlers\BrowserconfigXml; 8f5402f3dSGreg Roachuse Fisharebest\Webtrees\Http\RequestHandlers\SearchQuickAction; 9439bf5cfSGreg Roachuse Fisharebest\Webtrees\Http\RequestHandlers\WebmanifestJson; 106ccdf4f0SGreg Roachuse Fisharebest\Webtrees\I18N; 116ccdf4f0SGreg Roachuse Fisharebest\Webtrees\Module\ModuleFooterInterface; 126ccdf4f0SGreg Roachuse Fisharebest\Webtrees\Module\ModuleGlobalInterface; 136ccdf4f0SGreg Roachuse Fisharebest\Webtrees\Module\ModuleThemeInterface; 146ccdf4f0SGreg Roachuse Fisharebest\Webtrees\Services\ModuleService; 15a907ae44SGreg Roachuse Fisharebest\Webtrees\Tree; 16b55cbc6bSGreg Roachuse Fisharebest\Webtrees\Validator; 176ccdf4f0SGreg Roachuse Fisharebest\Webtrees\View; 186ccdf4f0SGreg Roachuse Fisharebest\Webtrees\Webtrees; 196ccdf4f0SGreg Roachuse Psr\Http\Message\ServerRequestInterface; 206ccdf4f0SGreg Roach 216ccdf4f0SGreg Roach/** 226ccdf4f0SGreg Roach * @var string $content 23a907ae44SGreg Roach * @var ServerRequestInterface $request 24a907ae44SGreg Roach * @var string $title 25a907ae44SGreg Roach * @var Tree $tree 266ccdf4f0SGreg Roach */ 276ccdf4f0SGreg Roach 286ccdf4f0SGreg Roach?> 29dd6b2bfcSGreg Roach 30dd6b2bfcSGreg Roach<!DOCTYPE html> 3165cf5706SGreg Roach<html dir="<?= I18N::locale()->direction() ?>" lang="<?= I18N::locale()->languageTag() ?>"> 32dd6b2bfcSGreg Roach <head> 33dd6b2bfcSGreg Roach <meta charset="UTF-8"> 34dd6b2bfcSGreg Roach <meta name="csrf" content="<?= e(csrf_token()) ?>"> 35dd6b2bfcSGreg Roach <meta name="viewport" content="width=device-width, initial-scale=1"> 36377a2979SGreg Roach <meta name="robots" content="<?= e($meta_robots ?? 'noindex') ?>"> 378d0ebef0SGreg Roach <meta name="generator" content="<?= e(Webtrees::NAME) ?> <?= e(Webtrees::VERSION) ?>"> 382406e0e0SGreg Roach <meta name="description" content="<?= $meta_description ?? '' ?>"> 39dd6b2bfcSGreg Roach 40dd6b2bfcSGreg Roach <title> 41dd6b2bfcSGreg Roach <?= strip_tags($title) ?> 42dd6b2bfcSGreg Roach <?php if ($tree !== null && $tree->getPreference('META_TITLE') !== '') : ?> 43dd6b2bfcSGreg Roach – <?= e($tree->getPreference('META_TITLE')) ?> 44dd6b2bfcSGreg Roach <?php endif ?> 45dd6b2bfcSGreg Roach </title> 46dd6b2bfcSGreg Roach 47a951c2d0SGreg Roach <!--iOS--> 48d36fce8cSGreg Roach <link rel="apple-touch-icon" sizes="180x180" href="<?= e(route(AppleTouchIconPng::class)) ?>"> 4952bcc402SGreg Roach <!--Generic favicons--> 5052bcc402SGreg Roach <link rel="icon" sizes="32x32" href="<?= e(asset('favicon-32.png')) ?>"> 5152bcc402SGreg Roach <link rel="icon" sizes="192x192" href="<?= e(asset('favicon-192.png')) ?>"> 520601cabdSGreg Roach <!--IE11/Edge--> 53d36fce8cSGreg Roach <meta name="msapplication-config" content="<?= e(route(BrowserconfigXml::class)) ?>"> 54dd6b2bfcSGreg Roach 55a6f0d6ddSGreg Roach <link rel="manifest" href="<?= e(route(WebmanifestJson::class)) ?>" crossorigin="use-credentials"> 56c4d12d2bSGreg Roach 57e837ff07SGreg Roach <link rel="stylesheet" href="<?= e(asset('css/vendor.min.css')) ?>"> 58cab242e7SGreg Roach <?php foreach (app(ModuleThemeInterface::class)->stylesheets() as $stylesheet) : ?> 59e837ff07SGreg Roach <link rel="stylesheet" href="<?= e($stylesheet) ?>"> 60dd6b2bfcSGreg Roach <?php endforeach ?> 61dd6b2bfcSGreg Roach 62dd6b2bfcSGreg Roach <?= View::stack('styles') ?> 63dd6b2bfcSGreg Roach 64d70512abSGreg Roach <?= app(ModuleService::class)->findByInterface(ModuleGlobalInterface::class)->map(static function (ModuleGlobalInterface $module): string { 65d70512abSGreg Roach return $module->headContent(); 66d70512abSGreg Roach })->implode('') ?> 67dd6b2bfcSGreg Roach </head> 68dd6b2bfcSGreg Roach 6933cff286SGreg Roach <body class="wt-global wt-theme-<?= e(app(ModuleThemeInterface::class)->name()) ?> wt-route-<?= e(basename(strtr(Validator::attributes($request)->route()->name ?? '/', ['\\' => '/']))) ?>"> 70dd6b2bfcSGreg Roach <header class="wt-header-wrapper d-print-none"> 7116543441SGreg Roach <div class="container-lg wt-header-container"> 72dd6b2bfcSGreg Roach <div class="row wt-header-content"> 7397c22350SGreg Roach <div class="wt-accessibility-links position-fixed"> 74315eb316SGreg Roach <a class="visually-hidden visually-hidden-focusable btn btn-info btn-sm" href="#content"> 756ccdf4f0SGreg Roach <?= /* I18N: Skip over the headers and menus, to the main content of the page */ 766ccdf4f0SGreg Roach I18N::translate('Skip to content') ?> 77dd6b2bfcSGreg Roach </a> 78dd6b2bfcSGreg Roach </div> 79dd6b2bfcSGreg Roach <div class="col wt-site-logo"></div> 80dd6b2bfcSGreg Roach 81dd6b2bfcSGreg Roach <?php if ($tree !== null) : ?> 82cc13d6d8SGreg Roach <h1 class="col wt-site-title"><?= e($tree->title()) ?></h1> 83dd6b2bfcSGreg Roach 84dd6b2bfcSGreg Roach <div class="col wt-header-search"> 8581443e3cSGreg Roach <form method="post" action="<?= e(route(SearchQuickAction::class, ['tree' => $tree->name()])) ?>" class="wt-header-search-form" role="search"> 86dd6b2bfcSGreg Roach <div class="input-group"> 87315eb316SGreg Roach <label class="visually-hidden" for="quick-search"><?= I18N::translate('Search') ?></label> 8881443e3cSGreg Roach 8981443e3cSGreg Roach <input type="search" class="form-control wt-header-search-field" id="quick-search" name="query" size="15" placeholder="<?= I18N::translate('Search') ?>"> 9081443e3cSGreg Roach 9127c789f1SGreg Roach <button type="submit" class="btn btn-primary wt-header-search-button" aria-label="<?= I18N::translate('Search') ?>"> 92dd6b2bfcSGreg Roach <?= view('icons/search') ?> 93dd6b2bfcSGreg Roach </button> 94b6c326d8SGreg Roach </div> 9581443e3cSGreg Roach 9681443e3cSGreg Roach <?= csrf_field() ?> 97dd6b2bfcSGreg Roach </form> 98dd6b2bfcSGreg Roach </div> 99dd6b2bfcSGreg Roach <?php endif ?> 100dd6b2bfcSGreg Roach 101dd6b2bfcSGreg Roach <div class="col wt-secondary-navigation"> 1020c8c69d4SGreg Roach <ul class="nav wt-user-menu"> 103cab242e7SGreg Roach <?php foreach (app(ModuleThemeInterface::class)->userMenu($tree) as $menu) : ?> 104f78837dcSGreg Roach <?= view('components/menu-item', ['menu' => $menu]) ?> 105dd6b2bfcSGreg Roach <?php endforeach ?> 106dd6b2bfcSGreg Roach </ul> 107dd6b2bfcSGreg Roach </div> 108dd6b2bfcSGreg Roach 109dd6b2bfcSGreg Roach <?php if ($tree !== null) : ?> 110dd6b2bfcSGreg Roach <nav class="col wt-primary-navigation"> 1110c8c69d4SGreg Roach <ul class="nav wt-genealogy-menu"> 112cab242e7SGreg Roach <?php foreach (app(ModuleThemeInterface::class)->genealogyMenu($tree) as $menu) : ?> 113f78837dcSGreg Roach <?= view('components/menu-item', ['menu' => $menu]) ?> 114dd6b2bfcSGreg Roach <?php endforeach ?> 115dd6b2bfcSGreg Roach </ul> 116dd6b2bfcSGreg Roach </nav> 117dd6b2bfcSGreg Roach <?php endif ?> 118dd6b2bfcSGreg Roach </div> 119dd6b2bfcSGreg Roach </div> 120dd6b2bfcSGreg Roach </header> 121dd6b2bfcSGreg Roach 122dd6b2bfcSGreg Roach <main id="content" class="wt-main-wrapper"> 12316543441SGreg Roach <div class="container-lg wt-main-container"> 124dd6b2bfcSGreg Roach <div class="flash-messages"> 125dd6b2bfcSGreg Roach <?php foreach (FlashMessages::getMessages() as $message) : ?> 126dd6b2bfcSGreg Roach <div class="alert alert-<?= e($message->status) ?> alert-dismissible" role="alert"> 127315eb316SGreg Roach <button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="<?= I18N::translate('close') ?>"> 128dd6b2bfcSGreg Roach </button> 129dd6b2bfcSGreg Roach <?= $message->text ?> 130dd6b2bfcSGreg Roach </div> 131dd6b2bfcSGreg Roach <?php endforeach ?> 132dd6b2bfcSGreg Roach </div> 133dd6b2bfcSGreg Roach 134dd6b2bfcSGreg Roach <?= $content ?> 135dd6b2bfcSGreg Roach </div> 136dd6b2bfcSGreg Roach </main> 137dd6b2bfcSGreg Roach 13816543441SGreg Roach <footer class="container-lg wt-footers d-print-none"> 139d70512abSGreg Roach <?= app(ModuleService::class)->findByInterface(ModuleFooterInterface::class)->map(static function (ModuleFooterInterface $module) use ($request): string { 140d70512abSGreg Roach return $module->getFooter($request); 141d70512abSGreg Roach })->implode('') ?> 142dd6b2bfcSGreg Roach </footer> 143dd6b2bfcSGreg Roach 144ad727080SGreg Roach <script src="<?= e(asset('js/vendor.min.js')) ?>"></script> 145ad727080SGreg Roach <script src="<?= e(asset('js/webtrees.min.js')) ?>"></script> 146dd6b2bfcSGreg Roach 147dd6b2bfcSGreg Roach <script> 148cee51dfdSGreg Roach // Trigger an event when we click on an (any) image 149cee51dfdSGreg Roach $('body').on('click', 'a.gallery', function () { 150cee51dfdSGreg Roach // Enable colorbox for images 151cee51dfdSGreg Roach $("a[type^=image].gallery").colorbox({ 152cee51dfdSGreg Roach // Don't scroll window with document 153cee51dfdSGreg Roach fixed: true, 154dd6b2bfcSGreg Roach width: "85%", 155dd6b2bfcSGreg Roach height: "85%", 156cee51dfdSGreg Roach current: "", 157*28281361SGreg Roach previous: '<i class="fa-solid fa-arrow-left wt-icon-flip-rtl" title="<?= I18N::translate('previous') ?>"></i>', 158*28281361SGreg Roach next: '<i class="fa-solid fa-arrow-right wt-icon-flip-rtl" title="<?= I18N::translate('next') ?>"></i>', 159*28281361SGreg Roach slideshowStart: '<i class="fa-solid fa-play" title="<?= I18N::translate('Play') ?>"></i>', 160*28281361SGreg Roach slideshowStop: '<i class="fa-solid fa-stop" title="<?= I18N::translate('Stop') ?>"></i>', 161*28281361SGreg Roach close: '<i class="fa-solid fa-times" title="<?= I18N::translate('close') ?>"></i>', 1626ccdf4f0SGreg Roach title: function () { 1636ccdf4f0SGreg Roach return this.dataset.title; 1646ccdf4f0SGreg Roach }, 165cee51dfdSGreg Roach photo: true, 166cee51dfdSGreg Roach rel: "gallery", // Turn all images on the page into a slideshow 167cee51dfdSGreg Roach slideshow: true, 168cee51dfdSGreg Roach slideshowAuto: false, 169033999b0SGreg Roach slideshowSpeed: 4000, 170cee51dfdSGreg Roach // Add wheelzoom to the displayed image 171cee51dfdSGreg Roach onComplete: function () { 172cee51dfdSGreg Roach // Disable click on image triggering next image 173cee51dfdSGreg Roach // https://github.com/jackmoore/colorbox/issues/668 174cee51dfdSGreg Roach $(".cboxPhoto").unbind("click"); 1753cf811e8SGreg Roach // Enable wheel/pinch zooming 1763cf811e8SGreg Roach $('.cboxPhoto').wrap("<pinch-zoom></pinch-zoom>"); 177cee51dfdSGreg Roach } 178cee51dfdSGreg Roach }); 179dd6b2bfcSGreg Roach }); 180dd6b2bfcSGreg Roach </script> 181dd6b2bfcSGreg Roach 182dd6b2bfcSGreg Roach <?= View::stack('javascript') ?> 183dd6b2bfcSGreg Roach 184d70512abSGreg Roach <?= app(ModuleService::class)->findByInterface(ModuleGlobalInterface::class)->map(static function (ModuleGlobalInterface $module): string { 185d70512abSGreg Roach return $module->bodyContent(); 186d70512abSGreg Roach })->implode('') ?> 187dd6b2bfcSGreg Roach </body> 188dd6b2bfcSGreg Roach</html> 189