34 lines
712 B
HTML
34 lines
712 B
HTML
<!DOCTYPE html>
|
|
<html lang="fr">
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<meta name="description" content="{% block description %}{% endblock %}">
|
|
<meta name="author" content="Paul TREHIOU">
|
|
|
|
<title>Musique fraternité - {% block titre %}{% endblock %}</title>
|
|
|
|
{% include "common_files/include_head.html" %}
|
|
|
|
{% block extra_head %}
|
|
{% endblock %}
|
|
|
|
</head>
|
|
|
|
<body id="page-top">
|
|
|
|
{% include "common_files/navbar.html" %}
|
|
|
|
{% block contenu %}{% endblock %}
|
|
|
|
{% include "common_files/footer.html" %}
|
|
|
|
{% include "common_files/include_foot.html" %}
|
|
|
|
{% block scripts %}{% endblock %}
|
|
|
|
</body>
|
|
|
|
</html>
|