template de base
All checks were successful
All checks were successful
This commit is contained in:
parent
bc6add0029
commit
7f351809c8
8 changed files with 492 additions and 623 deletions
33
templates/base.html
Normal file
33
templates/base.html
Normal file
|
@ -0,0 +1,33 @@
|
|||
<!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>
|
Loading…
Add table
Add a link
Reference in a new issue