summaryrefslogtreecommitdiff
path: root/lib/partials.php
blob: 493b469a3a315418bd117a1dea92c78432c2cfcd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/lib/config.php';

function render_header()
{
    echo '' ?>
    <header>
        <div class="banner">
            <h1><?= INSTANCE_NAME ?></h1>
        </div>
        <div class="links">
            <a href="/">Home</a>
        </div>
    </header>
    <?php ;
}