diff options
Diffstat (limited to 'templates/base.html')
-rw-r--r-- | templates/base.html | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/templates/base.html b/templates/base.html new file mode 100644 index 0000000..028aaa9 --- /dev/null +++ b/templates/base.html | |||
@@ -0,0 +1,31 @@ | |||
1 | <!DOCTYPE html> | ||
2 | |||
3 | <html lang="fr"> | ||
4 | <head> | ||
5 | <meta charset="UTF-8" > | ||
6 | <title>Le bingo de l'allaitement</title> | ||
7 | <link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}" type="text/css"> | ||
8 | <!--<link rel="shortcut icon" href="{{ url_for('static', filename='favicon.ico') }}">--> | ||
9 | |||
10 | <script src="static/outilspage.js"></script> | ||
11 | <meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
12 | |||
13 | </head> | ||
14 | |||
15 | <body> | ||
16 | |||
17 | {% block contenu %}{% endblock %} | ||
18 | |||
19 | <hr> | ||
20 | <div id="basdepage"> | ||
21 | <nav> | ||
22 | <a href="/">Grille aléatoire</a> | | ||
23 | <a href="/custom">Créer une grille personnalisée</a> | | ||
24 | <!-- <a href="/apropos">À propos</a> |--> | ||
25 | |||
26 | </nav> | ||
27 | </div> | ||
28 | |||
29 | |||
30 | </body> | ||
31 | </html> | ||