summaryrefslogtreecommitdiff
path: root/templates/base.html
blob: dd4192a34ae87449502408bc4a0e225a16c8f286 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<!DOCTYPE html>

<html lang="fr">
    <head>
        <meta charset="UTF-8" >
        <title>Courbes de croissance OMS de l'enfant</title>
        <link rel="stylesheet" href="static/style.css" type="text/css">
        <script src="static/requetes.js"></script>
        <script src="static/outilspage.js"></script>
        <meta name="viewport" content="width=device-width, initial-scale=1.0">

    </head>

    <body onload="affiche_donneesplus_sibesoin()">
		<h1>Courbes de croissance « OMS » de l'enfant</h1>
	
		{% if err.length != 0 %}
		<div id="warnings">
			<ul>
			{% for message in err %}
			  <li>{{ message }}</li>
			{% endfor %}
			</ul>
		</div>
		{% endif %}
		
		
		<div id="content">
		{% block contenu %}{% endblock %}
		
		</div>

		<hr>
		
		<nav><a href="/">Accueil et saisie des données</a> |
		<a href="/faq">FAQ</a> |
		<a href="/contact">Contact</a> |
		<a href="/apropos">À propos</a> |
		<a href="/changelog">Changelog</a>

		</nav> 
		
	</body>
</html>