blob: 40a73b05d0db0830113e807151265a61d6e62019 (
plain) (
tree)
|
|
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8" >
<title>Courbe de poids OMS</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>Courbe de poids OMS</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>
|