PCv5/app/templates/base/base.html

25 lines
451 B
HTML
Raw Normal View History

2018-02-23 23:34:06 +01:00
<!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>
2018-02-23 23:34:06 +01:00
{% include "base/flash.html" %}
2018-02-26 10:24:16 +01:00
2018-02-23 23:34:06 +01:00
{% include "base/scripts.html" %}
</body>
</html>