Files
minne/html-router/templates/body_base.html
2025-04-08 15:45:16 +02:00

16 lines
354 B
HTML

{% extends "head_base.html" %}
{% block body %}
<body>
<div class="min-h-screen flex flex-col">
<!-- Navbar -->
{% include "navigation_bar.html" %}
<!-- Main Content -->
{% block main %}{% endblock %}
<div id="modal"></div>
<div id="toast-container" class="toast toast-bottom toast-end"></div>
</div>
</body>
{% endblock %}