16 lines
543 B
Plaintext
16 lines
543 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>
|
|
<section class="kg-section" style="padding-top: 0;">{{ slots.hero|safe }}</section>
|
|
<main class="kg-container">
|
|
{% if slots.main %}{{ slots.main|safe }}{% endif %}
|
|
</main>
|
|
<section>{{ slots.cta|safe }}</section>
|
|
<footer style="margin-top: auto;">{{ slots.footer|safe }}</footer>
|
|
{{ body_end_html|safe }}
|
|
</body>
|
|
</html>
|