blob: 042e5a849d2b1c2d26429e045e6a230711b81981 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/../config.php';
function html_big_navbar()
{
echo '' ?>
<section class="column justify-center align-center navbar">
<div class="column justify-center grow">
<h1><img src="/static/img/brand/big.webp" alt="<?= INSTANCE_NAME ?>"></h1>
</div>
<div class="row justify-center">
</div>
</section>
<?php ;
}
|