24 lines
1.1 KiB
Plaintext
24 lines
1.1 KiB
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="mx-auto w-full max-w-5xl">
|
|
{% if slots.aside %}
|
|
<div class="grid grid-cols-1 md:grid-cols-[20ch_1fr] gap-8 items-start">
|
|
<aside class="w-full">{{ slots.aside|safe }}</aside>
|
|
<article class="w-full terminal-prose">{% if slots.main %}{{ slots.main|safe }}{% else %}<p class="terminal-mono text-muted-foreground">// article body</p>{% endif %}</article>
|
|
</div>
|
|
{% else %}
|
|
<article class="mx-auto w-full max-w-3xl terminal-prose">{% if slots.main %}{{ slots.main|safe }}{% else %}<p class="terminal-mono text-muted-foreground">// article body</p>{% endif %}</article>
|
|
{% endif %}
|
|
</div>
|
|
</main>
|
|
<footer class="w-full mt-auto">{{ slots.footer|safe }}</footer>
|
|
{{ body_end_html|safe }}
|
|
</body>
|
|
</html>
|