PCv5/app/templates/base/base.html

24 lines
426 B
HTML

<!DOCTYPE html>
<html lang="fr-FR">
{% include "base/head.html" %}
<body>
{% include "base/navbar.html" %}
<div class="container">
<header>
<div>{% block title %}(page title){% endblock %}</div>
{% include "base/header.html" %}
</header>
{% block content %}
{% endblock %}
</div>
{% include "base/footer.html" %}
{% include "base/flash.html" %}
{% include "base/scripts.html" %}
</body>
</html>