1dd6b2bfcSGreg Roach<?php use Fisharebest\Webtrees\DebugBar; ?> 2dd6b2bfcSGreg Roach<?php use Fisharebest\Webtrees\FlashMessages; ?> 3dd6b2bfcSGreg Roach<?php use Fisharebest\Webtrees\I18N; ?> 4dd6b2bfcSGreg Roach<?php use Fisharebest\Webtrees\View; ?> 58d0ebef0SGreg Roach 6dd6b2bfcSGreg Roach<!DOCTYPE html> 7*e837ff07SGreg Roach<html dir="<?= I18N::direction() ?>" lang="<?= WT_LOCALE ?>"> 8dd6b2bfcSGreg Roach <head> 9dd6b2bfcSGreg Roach <meta charset="UTF-8"> 10dd6b2bfcSGreg Roach <meta name="viewport" content="width=device-width, initial-scale=1"> 11dd6b2bfcSGreg Roach <meta name="csrf" content="<?= e(csrf_token()) ?>"> 12dd6b2bfcSGreg Roach 13dd6b2bfcSGreg Roach <title><?= $title ?></title> 14dd6b2bfcSGreg Roach 15b08e6999SGreg Roach <link rel="icon" href="<?= e(asset('favicon.ico')) ?>" type="image/x-icon"> 16dd6b2bfcSGreg Roach 17*e837ff07SGreg Roach <link rel="stylesheet" href="<?= e(asset('css/vendor.min.css')) ?>"> 18*e837ff07SGreg Roach <link rel="stylesheet" href="<?= e(asset('css/administration.min.css')) ?>"> 19dd6b2bfcSGreg Roach 20dd6b2bfcSGreg Roach <?= View::stack('styles') ?> 21dd6b2bfcSGreg Roach 22dd6b2bfcSGreg Roach <?= DebugBar::renderHead() ?> 23dd6b2bfcSGreg Roach </head> 24dd6b2bfcSGreg Roach <body class="container wt-global"> 25dd6b2bfcSGreg Roach <header> 26dd6b2bfcSGreg Roach <div class="wt-accessibility-links"> 27dd6b2bfcSGreg Roach <a class="sr-only sr-only-focusable btn btn-info btn-sm" href="#content"> 28dd6b2bfcSGreg Roach <?= /* I18N: Skip over the headers and menus, to the main content of the page */ I18N::translate('Skip to content') ?> 29dd6b2bfcSGreg Roach </a> 30dd6b2bfcSGreg Roach </div> 31dd6b2bfcSGreg Roach 32dd6b2bfcSGreg Roach <ul class="nav small d-flex justify-content-end"> 33dd6b2bfcSGreg Roach <li class="nav-item menu-mypage"> 34dd6b2bfcSGreg Roach <a class="nav-link active" href="<?= e(route('user-page')) ?>"><?= I18N::translate('My page') ?></a> 35dd6b2bfcSGreg Roach </li> 36dd6b2bfcSGreg Roach <li class="nav-item dropdown menu-language"> 37dd6b2bfcSGreg Roach <a class="nav-link dropdown-toggle" data-toggle="dropdown" href="#" role="button" aria-haspopup="true" aria-expanded="false"> 38dd6b2bfcSGreg Roach <?= I18N::translate('Language') ?> 39dd6b2bfcSGreg Roach </a> 40dd6b2bfcSGreg Roach <div class="dropdown-menu"> 41dd6b2bfcSGreg Roach <?php foreach (I18N::activeLocales() as $locale) : ?> 42dd6b2bfcSGreg Roach <a class="dropdown-item menu-language-<?= $locale->languageTag() ?> <?= WT_LOCALE === $locale->languageTag() ? ' active' : ''?>" data-language="<?= $locale->languageTag() ?>" href="#"><?= $locale->endonym() ?></a> 43dd6b2bfcSGreg Roach <?php endforeach ?> 44dd6b2bfcSGreg Roach </div> 45dd6b2bfcSGreg Roach </li> 46dd6b2bfcSGreg Roach <li class="nav-item menu-logout"> 47dd6b2bfcSGreg Roach <a class="nav-link" href="<?= e(route('logout')) ?>"><?= I18N::translate('Sign out') ?></a> 48dd6b2bfcSGreg Roach </li> 49dd6b2bfcSGreg Roach </ul> 50dd6b2bfcSGreg Roach </header> 51dd6b2bfcSGreg Roach 52dd6b2bfcSGreg Roach <div id="content"></div> 53dd6b2bfcSGreg Roach 54dd6b2bfcSGreg Roach <?php foreach (FlashMessages::getMessages() as $message) : ?> 55dd6b2bfcSGreg Roach <div class="alert alert-<?= $message->status ?> alert-dismissible" role="alert"> 56dd6b2bfcSGreg Roach <button type="button" class="close" data-dismiss="alert" aria-label="<?= I18N::translate('close') ?>"> 57dd6b2bfcSGreg Roach <span aria-hidden="true">×</span> 58dd6b2bfcSGreg Roach </button> 59dd6b2bfcSGreg Roach <?= $message->text ?> 60dd6b2bfcSGreg Roach </div> 61dd6b2bfcSGreg Roach <?php endforeach ?> 62dd6b2bfcSGreg Roach 63dd6b2bfcSGreg Roach <?= $content ?> 64dd6b2bfcSGreg Roach 65ad727080SGreg Roach <script src="<?= e(asset('js/vendor.min.js')) ?>"></script> 66ad727080SGreg Roach <script src="<?= e(asset('js/webtrees.min.js')) ?>"></script> 67dd6b2bfcSGreg Roach 68dd6b2bfcSGreg Roach <?= View::stack('javascript') ?> 69dd6b2bfcSGreg Roach 70dd6b2bfcSGreg Roach <?= DebugBar::render() ?> 71dd6b2bfcSGreg Roach </body> 72dd6b2bfcSGreg Roach</html> 73