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

<head>
    <title><?= $pageTitle ?></title>
    <link rel="stylesheet" href="/static/style.css">
    <link rel="stylesheet" href="https://fonts.bunny.net/css?family=dm-sans:400,400i,800,800i">
    <link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:FILL@0..1">
    <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"><?= __('timeline.global.shortName') ?></a></li>
                <li><a href="/feed/local"><?= __('timeline.local.shortName') ?></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>