PCv5/app/templates/base/base.html

15 lines
246 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" %}
{% block container %}
{% endblock container %}
{% include "base/footer.html" %}
{% include "base/scripts.html" %}
</body>
</html>