12 lines
755 B
Plaintext
12 lines
755 B
Plaintext
<!DOCTYPE html>
|
|
<html lang="en" class="earthen">
|
|
{{ head_html|safe }}
|
|
<body class="bg-paper-grain earthen-body antialiased min-h-screen flex flex-col" style="background-color: hsl(var(--background)); color: hsl(var(--foreground)); font-family: var(--font-body, "Spectral", Georgia, serif);">
|
|
{{ admin_banner_html|safe }}
|
|
<header class="w-full">{{ slots.header|safe }}</header>
|
|
<main class="flex-grow w-full max-w-5xl mx-auto px-4 py-10">{% if slots.main %}{{ slots.main|safe }}{% else %}<div class="py-20 text-center" style="color: hsl(var(--muted-foreground));"><p>No content blocks assigned to this page.</p></div>{% endif %}</main>
|
|
<footer class="w-full mt-auto">{{ slots.footer|safe }}</footer>
|
|
{{ body_end_html|safe }}
|
|
</body>
|
|
</html>
|