diff options
author | clyhtsuriva <clyhtsuriva@gmail.com> | 2020-05-07 09:08:24 +0200 |
---|---|---|
committer | clyhtsuriva <clyhtsuriva@gmail.com> | 2020-05-07 09:08:24 +0200 |
commit | 9ea0537b9a755ecce2919d76727f4eee86cf5739 (patch) | |
tree | e6ee480463deda8b402540b73c47b4fab59ebc48 /www | |
parent | 414f3c531e06b8af6fc9ecad316b0b4a9b6116aa (diff) |
ajout de nav dans baseHTML
Diffstat (limited to 'www')
-rwxr-xr-x | www/html/fonctions.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/www/html/fonctions.py b/www/html/fonctions.py index 74977ce..ef29718 100755 --- a/www/html/fonctions.py +++ b/www/html/fonctions.py @@ -10,7 +10,11 @@ def baseHTML(title,body): <meta charset="UTF-8"> <link rel="stylesheet" type="text/css" href="style.css"> </head> - <body>"""+ body +"""</body> + <body> + <nav> + <a href="/index.py/">Index</a> | + <a href="/fitre.py/">Filtre</a> + """+ body +"""</body> </html> """) |