27 lines
367 B
HTML
27 lines
367 B
HTML
<!DOCTYPE html>
|
|
<html lang="fr">
|
|
|
|
{% include '_head.html' %}
|
|
|
|
|
|
<body role="document">
|
|
|
|
|
|
{% include '_nav_userlogin.html'%}
|
|
|
|
|
|
|
|
<div class="container theme-showcase" role="main">
|
|
{% block main %}{% endblock %}
|
|
|
|
</div>
|
|
|
|
{% include '_flash_msgs.html' %}
|
|
{% include '_footer.html' %}
|
|
{% include '_js-core.html' %}
|
|
{% include '_js-gallery.html' %}
|
|
|
|
</body>
|
|
|
|
</html>
|