24 lines
728 B
HTML
24 lines
728 B
HTML
<!doctype html>
|
|
<html lang="fr" class="h-full">
|
|
<head>
|
|
<title>{% block title %}{{ title }}{% endblock %}</title>
|
|
|
|
<script src="/assets/js/htmx.min.js"></script>
|
|
<script src="//unpkg.com/alpinejs" defer></script>
|
|
<link href="/assets/css/style.css" rel="stylesheet">
|
|
<link href="https://cdn.jsdelivr.net/npm/flowbite@2.5.1/dist/flowbite.min.css" rel="stylesheet" />
|
|
<script src="https://cdn.jsdelivr.net/npm/flowbite@2.5.1/dist/flowbite.min.js"></script>
|
|
|
|
{% block head %}{% endblock %}
|
|
</head>
|
|
<body class="h-full">
|
|
<div class="min-h-full">
|
|
{% block nav %}
|
|
{% include "layout/nav.html" %}
|
|
{% endblock %}
|
|
|
|
{% block body %}{% endblock %}
|
|
</div>
|
|
</body>
|
|
</html>
|