blob: 028aaa9a8d0bc93c65e05fa5a339f2dedec0dafb (
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
|
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8" >
<title>Le bingo de l'allaitement</title>
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}" type="text/css">
<!--<link rel="shortcut icon" href="{{ url_for('static', filename='favicon.ico') }}">-->
<script src="static/outilspage.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
{% block contenu %}{% endblock %}
<hr>
<div id="basdepage">
<nav>
<a href="/">Grille aléatoire</a> |
<a href="/custom">Créer une grille personnalisée</a> |
<!-- <a href="/apropos">À propos</a> |-->
</nav>
</div>
</body>
</html>
|