-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtemplate.html
62 lines (62 loc) · 2.89 KB
/
template.html
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<!doctype html>
<html lang="fr">
<head>
<meta charset="utf-8" />
<title>{{title}}</title>
<link rel="stylesheet" href="{{root}}style.css" />
<link rel="icon" href="{{root}}images/icons8-headphones-96.ico" type="image/x-icon" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
</head>
<body>
<header>
<nav>
<a href="{{root}}index.html">Accueil</a>
<a href="{{root}}authors.html">Auteurs</a>
<a href="{{root}}index.html#catalog">Catalogue</a>
</nav>
<div class="right-section">
<a href="{{root}}contact.html">Contact</a>
</div>
</header>
{{content}}
<footer>
<div class="footer-content">
<div class="footer-item">
<h2>Informations</h2>
<ul>
<li><a href="#">À propos</a></li>
<li><a href="#">Notre mission</a></li>
<li><a href="#">Conditions générales de vente</a></li>
<li><a href="#">Politique de confidentialité</a></li>
<li><a href="#">Mentions légales</a></li>
</ul>
</div>
<div class="footer-item">
<h2>Clients</h2>
<ul>
<li><a href="#">Livraison et retours</a></li>
<li><a href="#">FAQ</a></li>
<li><a href="#">Contactez-nous</a></li>
<li><a href="#">Guide d'achat</a></li>
<li><a href="#">Programme de fidélité</a></li>
</ul>
</div>
<div class="footer-item">
<h2>Suivez-nous</h2>
<ul>
<li>
<a href="#"><img src="{{root}}images/65a4fe4237b6a1c4fa714f76_x.svg" alt="X" /></a>
<a href="#"><img src="{{root}}images/65a4fe42d907d27f3dead7a0_instagram.svg" alt="Instagram" /></a>
<a href="#"><img src="{{root}}images/65a4fe4173c1df8be608c8a2_facebook.svg" alt="Facebook" /></a>
<a href="#"><img src="{{root}}images/65a4fe42d907d27f3dead7ad_youtube.svg" alt="YouTube" /></a>
<a href="#"><img src="{{root}}images/65a4fe4152ae5860036dadf1_tiktok.svg" alt="TikTok" /></a>
</li>
<li>Email : <a href="#">contact@votresite.com</a></li>
<li>Téléphone : <a href="#">+33 1 23 45 67 89</a></li>
<li>Adresse : <a href="#">123 Rue des Casques, 75001 Paris, France</a></li>
</ul>
</div>
</div>
</footer>
</body>
</html>