Pi66

git.pi66.xyz
A web interface for the pi66.xyz Git server
git clone https://git.pi66.xyz/git.pi66.xyz

src/templates/base.html

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
{% include "partials/head.html" %}
    <body class="font-[Pixelify] w-screen h-dvh max-w-[1200px] mx-auto overflow-hidden bg-black p-5 pb-0 flex flex-col gap-3">
        {% include "partials/header.html" %}

        <div class="flex-1 flex flex-col gap-2 overflow-hidden">

            <main class="flex-initial w-full box-border px-3 overflow-x-hidden pb-2 border border-[#333] overflow-y-auto">
                {{ page_content }}
            </main>

            {% include "partials/footer.html" %}
            {% include "partials/mobile-nav.html" %}

        </div>
    </body>
    {% include "partials/scripts.html" %}
</html>