PCv5/app/templates/base/base.html

25 lines
451 B
HTML

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