14 lines
556 B
Plaintext
14 lines
556 B
Plaintext
<!DOCTYPE html>
|
|
<html lang="en" class="dark">
|
|
{{ head_html|safe }}
|
|
<body class="terminal-page bg-background text-foreground antialiased min-h-screen flex flex-col">
|
|
{{ admin_banner_html|safe }}
|
|
<header class="w-full px-4">{{ slots.header|safe }}</header>
|
|
<main class="flex-grow w-full px-4 py-6">
|
|
{% if slots.main %}{{ slots.main|safe }}{% else %}<p class="terminal-mono">// no content blocks assigned to this page</p>{% endif %}
|
|
</main>
|
|
<footer class="w-full mt-auto px-4">{{ slots.footer|safe }}</footer>
|
|
{{ body_end_html|safe }}
|
|
</body>
|
|
</html>
|