aboutsummaryrefslogtreecommitdiffhomepage
path: root/templates/skeleton.php
blob: acf86bfad83e9b80718ef878c2f1e2fbcaa1359b (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
<!DOCTYPE html>
<html lang="en">

<head>
    <title><?= $pageTitle ?></title>
    <link rel="stylesheet" href="/static/style.css">
    <meta name="viewport" content="width=device-width, initial-scale=1">
</head>

<body>
    <header>
        <nav>
            <ul>
                <li><a href="/feed/global">Global</a></li>
                <li><a href="/feed/local">Local</a></li>
            </ul>
            <span id="siteTitle">Digitigrade</span>
        </nav>
    </header>
    <main>
        <?php if (!isset($renderTitleHeading) || $renderTitleHeading): ?>
            <h1><?= $pageTitle ?></h1>
        <?php endif; ?>
        <?php slot(); ?>
    </main>
</body>

</html>