summaryrefslogtreecommitdiff
path: root/templates/base.html
blob: e6472378adbe187726e41b2f575bbabbbf48c3de (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 id="findepage">
<div id="basdepage">
		<nav>
		<a href="/">Jouer (grille aléatoire)</a> |
		<a href="/custom">Créer une grille personnalisée</a> |
		<a href="/liste">Liste complète des remarques</a> |
		<a href="/apropos">À propos</a> 

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