PCv5/app/templates/base/base.html

24 lines
426 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>{% block title %}(page title){% endblock %}</div>
{% include "base/header.html" %}
</header>
{% block content %}
{% endblock %}
</div>
2018-02-23 23:34:06 +01:00
{% include "base/footer.html" %}
{% 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>