-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfooter.php
More file actions
31 lines (23 loc) · 1.08 KB
/
footer.php
File metadata and controls
31 lines (23 loc) · 1.08 KB
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
<?php
// Si la page est appelée directement par son adresse, on redirige en passant pas la page index
if (basename($_SERVER["PHP_SELF"]) != "index.php")
{
header("Location:../index.php");
die("");
}
?>
<footer class="page-footer pt-5 text-center mt-5">
<div class="bg-dark border-top pt-5 pb-5">
<h6 class="text-uppercase text-light pb-3 pl-2 pr-2">L'ATELIER DU BIJOUTIER</h6>
<div class="pt-3">
<p class="text-light pb-3 pl-3 pr-3">77 Place Jean Jaurès - Hénin-Beaumont 62110</p>
<p class="text-light pb-3 pl-1 pr-1">03 66 23 36 44</p>
</div>
<div class="pt-3">
<a href="https://www.facebook.com/atelier.du.bijoutier/" target="_blank"><img src='./ressources/facebook.svg' class='img-fluid pr-1' id='facebook-icon' style='max-width: 40px;height: auto' /></a>
<a href="https://www.instagram.com/latelierdubijoutier/" target="_blank"><img src='./ressources/instagram.svg' class='img-fluid pr-1 ml-5' id='instagram-icon' style='max-width: 30px;height: auto' />
</div>
</div>
</footer>
</body>
</html>