19 lines
948 B
Plaintext
19 lines
948 B
Plaintext
<!doctype html>
|
|
<html lang="en" class="{% if theme_mode == "dark" %}dark{% endif %}">
|
|
{{ head_html|safe }}
|
|
<body class="scifi-body bg-background text-foreground antialiased min-h-screen flex flex-col" style="font-family: var(--font-body);">
|
|
{{ admin_banner_html|safe }}
|
|
<header class="w-full hairline-b">{{ slots.header|safe }}</header>
|
|
<main class="flex-grow w-full">
|
|
<div class="max-w-5xl mx-auto px-4 py-12 grid grid-cols-12 gap-8">
|
|
{% if slots.rail %}<aside class="col-span-12 md:col-span-3 scifi-mono uppercase text-xs tracking-widest text-muted-foreground space-y-3">{{ slots.rail|safe }}</aside>{% endif %}
|
|
<article class="col-span-12 md:col-span-9 scifi-body max-w-2xl">
|
|
{% if slots.main %}{{ slots.main|safe }}{% else %}<p class="text-muted-foreground">No article body.</p>{% endif %}
|
|
</article>
|
|
</div>
|
|
</main>
|
|
<footer class="w-full mt-auto">{{ slots.footer|safe }}</footer>
|
|
{{ body_end_html|safe }}
|
|
</body>
|
|
</html>
|