summaryrefslogtreecommitdiff
path: root/templates/base.html
diff options
context:
space:
mode:
authorDenise sur Lya <sekhmet@lya>2020-06-14 23:20:48 +0200
committerDenise sur Lya <sekhmet@lya>2020-06-14 23:20:48 +0200
commit5679dfd03c9761283e3a36d6d09798aaa334e1e9 (patch)
treead22413283e2f9662af4bc526b6de119e270dae0 /templates/base.html
downloadoms-5679dfd03c9761283e3a36d6d09798aaa334e1e9.tar.gz
oms-5679dfd03c9761283e3a36d6d09798aaa334e1e9.tar.zst
oms-5679dfd03c9761283e3a36d6d09798aaa334e1e9.zip
Création du dépôt, site à peu près fonctionnel
Diffstat (limited to 'templates/base.html')
-rw-r--r--templates/base.html39
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>