kita/templates/index.html

24 lines
775 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" %}
<main
class="prose prose-neutral relative mx-auto min-h-[calc(100%-9rem)] max-w-3xl break-words px-4 pb-16 pt-32 dark:prose-invert prose-pre:rounded-lg"
>
{% 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>
</html>