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