blob: 6372d837665cbcae9e4f67d6a8b636eb067ee12e (
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
|
<?php
use Digitigrade\GlobalSettings;
use Digitigrade\Model\UserAccount;
$settings = GlobalSettings::getInstance();
?>
<!DOCTYPE html>
<html lang="en">
<head>
<title><?= __('writeNote.label') ?> — <?= $settings->get('instance.name') ?></title>
<?php call_template('head_tags'); ?>
</head>
<body hx-boost="true">
<header>
<nav>
<span></span>
<span></span>
<span></span>
<a id="rightPaneActivator" class="inlineIcon material-symbols-outlined" _="on click go back">close</a>
</nav>
</header>
<main class="mobilePane">
<?php call_template('notifications_panel', ['user' => UserAccount::requireByCurrentSession()]); ?>
</main>
</body>
</html>
|