diff options
Diffstat (limited to 'templates/base.html')
-rw-r--r-- | templates/base.html | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/templates/base.html b/templates/base.html new file mode 100644 index 0000000..571292f --- /dev/null +++ b/templates/base.html | |||
@@ -0,0 +1,39 @@ | |||
1 | <!DOCTYPE html> | ||
2 | |||
3 | <html lang="fr"> | ||
4 | <head> | ||
5 | <meta charset="UTF-8" > | ||
6 | <title>Courbe de poids OMS</title> | ||
7 | <link rel="stylesheet" href="static/style.css" type="text/css"> | ||
8 | <script src="static/requetes.js"></script> | ||
9 | <script src="static/outilspage.js"></script> | ||
10 | |||
11 | </head> | ||
12 | |||
13 | <body> | ||
14 | <h1>Courbe de poids OMS</h1> | ||
15 | |||
16 | {% if err.length != 0 %} | ||
17 | <div id="warnings"> | ||
18 | <ul> | ||
19 | {% for message in err %} | ||
20 | <li>{{ message }}</li> | ||
21 | {% endfor %} | ||
22 | </ul> | ||
23 | </div> | ||
24 | {% endif %} | ||
25 | |||
26 | |||
27 | <div id="content"> | ||
28 | {% block contenu %}{% endblock %} | ||
29 | |||
30 | </div> | ||
31 | |||
32 | <hr> | ||
33 | |||
34 | <nav><a href="/">Accueil et saisie des données</a> | | ||
35 | <a href="/apropos">À propos</a> | | ||
36 | </nav> | ||
37 | |||
38 | </body> | ||
39 | </html> | ||