aboutsummaryrefslogtreecommitdiff
path: root/templates/shared/content_box.php
blob: c31f4672f4f34ac84f3e6592c009f896470c7271 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<? if ($content_for_layout != ''): ?>
    <? if (!isset($admin_title)) $admin_title = _('Administration') ?>
    <section class="contentbox">
        <header>
            <h1>
                <? if (isset($icon_url)): ?>
                    <?= Assets::img($icon_url) ?>
                <? endif ?>
                <?= htmlReady($title) ?>
            </h1>
        <? if (isset($admin_url)): ?>
            <nav>
                <a href="<?= URLHelper::getLink($admin_url) ?>" title="<?= htmlReady($admin_title) ?>">
                    <?= Icon::create('admin')->asImg(tooltip2(htmlReady($admin_title))) ?>
                </a>
            </nav>
        <? endif; ?>
        </header>
        <section>
            <?= $content_for_layout ?>
        </section>
    </section>
<? endif;