aboutsummaryrefslogtreecommitdiffhomepage
path: root/templates/skeleton.php
blob: 8ed04eedc40e22502b2b9666d3065ba3cef015ad (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
<!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">
    <script src="https://unpkg.com/htmx.org@2.0.4"></script>
</head>

<body hx-boost="true">
    <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>