17 lines
711 B
Plaintext
17 lines
711 B
Plaintext
<!doctype html>
|
|
<html lang="en">
|
|
{{ head_html|safe }}
|
|
<body class="kg-page kg-dotted-paper">
|
|
{{ admin_banner_html|safe }}
|
|
<header class="kg-section" style="padding-block: 1.5rem;">{{ slots.header|safe }}</header>
|
|
<div class="kg-container" style="display: grid; grid-template-columns: 1fr; gap: 2rem; padding-block: 2rem;">
|
|
<main>
|
|
{% if slots.main %}<article class="kg-text">{{ slots.main|safe }}</article>{% else %}<div class="kg-empty">No content yet — start a story.</div>{% endif %}
|
|
</main>
|
|
{% if slots.aside %}<aside class="kg-card">{{ slots.aside|safe }}</aside>{% endif %}
|
|
</div>
|
|
<footer style="margin-top: auto;">{{ slots.footer|safe }}</footer>
|
|
{{ body_end_html|safe }}
|
|
</body>
|
|
</html>
|