mirror of
https://github.com/SebastianStork/kita.git
synced 2026-01-21 12:11:35 +01:00
30 lines
984 B
HTML
30 lines
984 B
HTML
{% import "macros.html" as macros %}
|
|
<!doctype html>
|
|
<html class="not-ready lg:text-base" lang="{{ lang }}">
|
|
{% include "partials/head.html" %}
|
|
<body class="text-black duration-200 ease-out dark:text-white">
|
|
{% include "partials/header.html" %}
|
|
|
|
<!-- Body Start inject -->
|
|
{% include "injects/body_start.html" ignore missing %}
|
|
|
|
<main
|
|
class="prose prose-neutral dark:prose-invert prose-pre:rounded-lg prose-img:rounded-lg relative mx-auto min-h-[calc(100vh-9rem)] max-w-3xl px-4 pt-24 pb-16 break-words lg:pt-32"
|
|
>
|
|
{% block main %}
|
|
|
|
<!-- Profile -->
|
|
{% if paginator is undefined or paginator.current_index == 1 %}<!---->
|
|
{% include "partials/profile.html" %}<!---->
|
|
{% endif %}<!---->
|
|
|
|
{% include "partials/page_list.html" %}<!---->
|
|
{% endblock main %}
|
|
</main>
|
|
|
|
{% include "partials/footer.html" %}
|
|
|
|
<!-- Body End inject -->
|
|
{% include "injects/body_end.html" ignore missing %}
|
|
</body>
|
|
</html>
|