]> git.immae.eu Git - perso/Denise/oms.git/blame - templates/base.html
petites améliorations graphiques, icône, etc
[perso/Denise/oms.git] / templates / base.html
CommitLineData
5679dfd0
DL
1<!DOCTYPE html>
2
3<html lang="fr">
4 <head>
5 <meta charset="UTF-8" >
8b5845ff 6 <title>Courbes de croissance OMS de l'enfant</title>
e4ec2d3d
DL
7 <link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}" type="text/css">
8 <link rel="shortcut icon" href="{{ url_for('static', filename='favicon.ico') }}">
5679dfd0
DL
9 <script src="static/requetes.js"></script>
10 <script src="static/outilspage.js"></script>
61020126 11 <meta name="viewport" content="width=device-width, initial-scale=1.0">
5679dfd0
DL
12
13 </head>
14
2c023f1a 15 <body onload="affiche_donneesplus_sibesoin()">
21c5bd57 16 <h1>Courbes de croissance «&nbsp;OMS&nbsp;» de l'enfant</h1>
5679dfd0
DL
17
18 {% if err.length != 0 %}
19 <div id="warnings">
20 <ul>
21 {% for message in err %}
22 <li>{{ message }}</li>
23 {% endfor %}
24 </ul>
25 </div>
26 {% endif %}
27
cf0d4c8c
DL
28 {% if beta %}
29 <div class="bandeau_beta">
30 <p>Attention !</p>
31 </p>Ceci est la version « Bêta-test » du site. Il se peut que l'outil ait un comportement inattendu ou buggue. Si vous ne savez pas ce que vous
32 faites là, retournez sur le site normal <a href="https://oms.syanni.eu">en cliquant ici</a></p>
33 </div>
34 {% endif %}
5679dfd0
DL
35
36 <div id="content">
37 {% block contenu %}{% endblock %}
38
21c5bd57 39 <hr>
5679dfd0
DL
40 </div>
41
21c5bd57 42
5679dfd0 43
21c5bd57
DL
44 <nav>
45 <a href="/">Accueil et saisie des données</a> |
be2bf515 46 <a href="/faq">FAQ</a> |
915e90bb
DL
47 <a href="/contact">Contact</a> |
48 <a href="/apropos">À propos</a> |
a46e1269 49 <a href="/changelog">Changelog</a>
5679dfd0
DL
50 </nav>
51
52 </body>
53</html>