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> 7dd6b2bfcSGreg Roach<html <?= I18N::htmlAttributes() ?>> 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 17dd6b2bfcSGreg Roach <?php if (I18N::direction() === 'rtl') : ?> 18*ad727080SGreg Roach <link rel="stylesheet" type="text/css" href="<?= e(asset('css/vendor-rtl.min.css')) ?>"> 19dd6b2bfcSGreg Roach <?php else : ?> 20*ad727080SGreg Roach <link rel="stylesheet" type="text/css" href="<?= e(asset('css/vendor.min.css')) ?>"> 21dd6b2bfcSGreg Roach <?php endif ?> 22*ad727080SGreg Roach <link rel="stylesheet" type="text/css" href="<?= e(asset('css/administration.min.css')) ?>"> 23dd6b2bfcSGreg Roach 24dd6b2bfcSGreg Roach <?= View::stack('styles') ?> 25dd6b2bfcSGreg Roach 26dd6b2bfcSGreg Roach <?= DebugBar::renderHead() ?> 27dd6b2bfcSGreg Roach </head> 28dd6b2bfcSGreg Roach <body class="container wt-global"> 29dd6b2bfcSGreg Roach <header> 30dd6b2bfcSGreg Roach <div class="wt-accessibility-links"> 31dd6b2bfcSGreg Roach <a class="sr-only sr-only-focusable btn btn-info btn-sm" href="#content"> 32dd6b2bfcSGreg Roach <?= /* I18N: Skip over the headers and menus, to the main content of the page */ I18N::translate('Skip to content') ?> 33dd6b2bfcSGreg Roach </a> 34dd6b2bfcSGreg Roach </div> 35dd6b2bfcSGreg Roach 36dd6b2bfcSGreg Roach <ul class="nav small d-flex justify-content-end"> 37dd6b2bfcSGreg Roach <li class="nav-item menu-mypage"> 38dd6b2bfcSGreg Roach <a class="nav-link active" href="<?= e(route('user-page')) ?>"><?= I18N::translate('My page') ?></a> 39dd6b2bfcSGreg Roach </li> 40dd6b2bfcSGreg Roach <li class="nav-item dropdown menu-language"> 41dd6b2bfcSGreg Roach <a class="nav-link dropdown-toggle" data-toggle="dropdown" href="#" role="button" aria-haspopup="true" aria-expanded="false"> 42dd6b2bfcSGreg Roach <?= I18N::translate('Language') ?> 43dd6b2bfcSGreg Roach </a> 44dd6b2bfcSGreg Roach <div class="dropdown-menu"> 45dd6b2bfcSGreg Roach <?php foreach (I18N::activeLocales() as $locale) : ?> 46dd6b2bfcSGreg Roach <a class="dropdown-item menu-language-<?= $locale->languageTag() ?> <?= WT_LOCALE === $locale->languageTag() ? ' active' : ''?>" data-language="<?= $locale->languageTag() ?>" href="#"><?= $locale->endonym() ?></a> 47dd6b2bfcSGreg Roach <?php endforeach ?> 48dd6b2bfcSGreg Roach </div> 49dd6b2bfcSGreg Roach </li> 50dd6b2bfcSGreg Roach <li class="nav-item menu-logout"> 51dd6b2bfcSGreg Roach <a class="nav-link" href="<?= e(route('logout')) ?>"><?= I18N::translate('Sign out') ?></a> 52dd6b2bfcSGreg Roach </li> 53dd6b2bfcSGreg Roach </ul> 54dd6b2bfcSGreg Roach </header> 55dd6b2bfcSGreg Roach 56dd6b2bfcSGreg Roach <div id="content"></div> 57dd6b2bfcSGreg Roach 58dd6b2bfcSGreg Roach <?php foreach (FlashMessages::getMessages() as $message) : ?> 59dd6b2bfcSGreg Roach <div class="alert alert-<?= $message->status ?> alert-dismissible" role="alert"> 60dd6b2bfcSGreg Roach <button type="button" class="close" data-dismiss="alert" aria-label="<?= I18N::translate('close') ?>"> 61dd6b2bfcSGreg Roach <span aria-hidden="true">×</span> 62dd6b2bfcSGreg Roach </button> 63dd6b2bfcSGreg Roach <?= $message->text ?> 64dd6b2bfcSGreg Roach </div> 65dd6b2bfcSGreg Roach <?php endforeach ?> 66dd6b2bfcSGreg Roach 67dd6b2bfcSGreg Roach <?= $content ?> 68dd6b2bfcSGreg Roach 69*ad727080SGreg Roach <script src="<?= e(asset('js/vendor.min.js')) ?>"></script> 70*ad727080SGreg Roach <script src="<?= e(asset('js/webtrees.min.js')) ?>"></script> 71dd6b2bfcSGreg Roach 72dd6b2bfcSGreg Roach <?= View::stack('javascript') ?> 73dd6b2bfcSGreg Roach 74dd6b2bfcSGreg Roach <?= DebugBar::render() ?> 75dd6b2bfcSGreg Roach </body> 76dd6b2bfcSGreg Roach</html> 77