blob: d7026ec20049fcc7ec093776e70bdce12a045819 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/lib/config.php';
function html_header()
{
echo '' ?>
<header>
<section class="brand">
<a href="/">
<img src="/static/img/brand/mini.webp" alt="">
<h1><?= INSTANCE_NAME ?></h1>
</a>
<a href="/sounds/">
<button>Sounds</button>
</a>
<a href="/sounds/upload.php">
<button>Upload</button>
</a>
</section>
</header>
<?php ;
}
|