aboutsummaryrefslogtreecommitdiffhomepage
path: root/templates/mobilepane_right.php
blob: f1cf46ae2dc3926fd794106091b25872409c286a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<?php
use Digitigrade\GlobalSettings;
use Digitigrade\Model\UserAccount;

$settings = GlobalSettings::getInstance();
?>
<!DOCTYPE html>
<html lang="en">

<head>
    <title><?= __('writeNote.label') ?> &mdash; <?= $settings->get('instance.name') ?></title>
    <?php call_template('head_tags'); ?>
</head>

<body>
    <header id="header" hx-swap-oob="true">
        <nav>
            <span>
                <img id="loadingIndicator" class="htmx-indicator" src="/static/tail-spin.svg"></span>
            <span></span>
            <span></span>
            <a id="rightPaneActivator" class="inlineIcon material-symbols close" _="on click go back"></a>
        </nav>
    </header>
    <main class="mobilePane" id="main" hx-boost="true" hx-indicator="#loadingIndicator" hx-vals='{"fl": 1}'
        hx-swap-oob="true">
        <section id="centrePane">
            <?php call_template('notifications_panel', ['user' => UserAccount::requireByCurrentSession()]); ?>
        </section>
    </main>
</body>

</html>