-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
48 lines (40 loc) · 1.7 KB
/
index.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
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Site de recettes de cuisine avec moteur de recherhe performant">
<meta name="keywords" content="recettes de cuisine, recettes de plats, recettes de dessert">
<link rel="icon" href="./assets/images/icons/favicon.svg" sizes="any" type="image/svg+xml">
<link rel="stylesheet" href="./assets/css/style.css">
<script src="https://kit.fontawesome.com/1364265626.js" crossorigin="anonymous"></script>
<title>Les Petits Plats - Site de recettes de cuisine</title>
</head>
<body>
<header>
<div class="logo"><img src="./assets/images/logo/logo.svg" alt="logo les petits plats"></div>
<h1>Les petits plats</h1>
</header>
<div class="search-wrapper"></div>
<div class="tags-wrapper"></div>
<div class="filters-wrapper"></div>
<div class="recipes-wrapper"></div>
<div class="modal-wrapper"></div>
<!-- Data -->
<script src="assets/data/recipes.js"></script>
<!-- Data models -->
<script src="assets/js/data-models/RecipeDataModel.js"></script>
<script src="assets/js/data-models/ResourcesDataModel.js"></script>
<!-- Search -->
<script src="assets/js/search/Search.js"></script>
<!-- Templates -->
<script src="assets/js/templates/RecipeCard.js"></script>
<script src="assets/js/templates/Filters.js"></script>
<script src="assets/js/templates/Tag.js"></script>
<script src="assets/js/templates/SearchBar.js"></script>
<script src="assets/js/templates/Modal.js"></script>
<!-- Entry points -->
<script src="assets/js/index.js"></script>
</body>
</html>