blob: 2fdd3b3a4952f741e10c5598b48145c5f025b40f (
plain) (
tree)
|
|
<!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>
<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>
|