grainParisArt/templates/base.html

35 lines
1.3 KiB
HTML
Raw Normal View History

2024-09-16 11:29:02 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="{{url_for('static', filename='css/main.css')}}">
2024-10-09 17:15:56 +00:00
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.9.4/dist/leaflet.css"
integrity="sha256-p4NxAoJBhIIN+hmNHrzRCf9tD/miZyoHS5obTRR9BMY="
crossorigin=""/>
<script src="https://unpkg.com/leaflet@1.9.4/dist/leaflet.js"
integrity="sha256-20nQCchB9co0qIjJZRGuk2/Z9VM+kNiyxNV1lvTlZBo="
crossorigin=""></script>
2024-09-16 11:29:02 +00:00
<link rel="shortcut icon" type="image/png" href="static/images/favicon.png"/>
2024-10-09 17:15:56 +00:00
<title>CinéBrest</title>
2024-09-16 11:29:02 +00:00
{% block head %} {% endblock %}
</head>
<header id="headerTop">
<div class="divHeader">
2024-10-09 17:15:56 +00:00
<h1 class="textLogo_header">CinéBrest</h1>
2024-09-16 11:29:02 +00:00
<p>Quand ça va pas, y aura toujours le cinéma</p>
</div>
</header>
<body>
{% block body %} {% endblock %}
2024-10-09 17:15:56 +00:00
</body>
2024-09-16 11:29:02 +00:00
<footer>
<div class="container_footer">
2024-10-09 17:25:03 +00:00
<p>Fait avec amour par <a href="https://www.solenederniaux.fr/">Solène Derniaux</a><br><a href="https://coolcraft.ovh">Adapté pour Brest par MathiasDPX</a></p>
2024-10-09 17:15:56 +00:00
<p>©Tous droits réservés<br><a href="https://github.com/MathiasDPX/grainParisArt/tree/brest">Disponible sur GitHub</a></p>
2024-09-16 11:29:02 +00:00
</div>
</footer>
2024-10-09 17:25:03 +00:00
</html>