22 lines
1016 B
Plaintext
22 lines
1016 B
Plaintext
<!doctype html>
|
|
<html lang="en" class="{% if theme_mode == "dark" %}dark{% endif %}">
|
|
{{ head_html|safe }}
|
|
<body class="terminal-page bg-background text-foreground antialiased min-h-screen flex flex-col">
|
|
{{ admin_banner_html|safe }}
|
|
<div aria-hidden="true" class="tty-scanlines pointer-events-none fixed inset-0 z-50"></div>
|
|
<header class="w-full">{{ slots.header|safe }}</header>
|
|
<main class="flex-grow w-full px-4 py-10">
|
|
<div class="max-w-[80ch] mx-auto">
|
|
<div class="tty-window">
|
|
<div class="tty-titlebar"><span class="tty-dot"></span><span class="tty-dot"></span><span class="tty-dot"></span><span class="ml-1 terminal-mono">man page</span></div>
|
|
<div class="terminal-prose p-6 md:p-8">
|
|
{% if slots.main %}{{ slots.main|safe }}{% else %}<p class="terminal-mono text-muted-foreground">// no content blocks assigned to this page</p>{% endif %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</main>
|
|
<footer class="w-full mt-auto">{{ slots.footer|safe }}</footer>
|
|
{{ body_end_html|safe }}
|
|
</body>
|
|
</html>
|