site-musique/templates/base.html

34 lines
626 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 "include_head.html" %}
{% block extra_head %}
{% endblock %}
</head>
<body id="page-top">
{% include "navbar.html" %}
{% block contenu %}
{% endblock %}
{% include "footer.html" %}
{% include "include_foot.html" %}
</body>
</html>