PCv5/app/templates/base/base.html

15 lines
246 B
HTML

<!DOCTYPE html>
<html lang="fr-FR">
{% include "base/head.html" %}
<body>
{% include "base/navbar.html" %}
{% block container %}
{% endblock container %}
{% include "base/footer.html" %}
{% include "base/scripts.html" %}
</body>
</html>