-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
113 lines (113 loc) · 3.96 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
<!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" />
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-+0n0xVW2eSR5OomGNYDnhzAbDsOXxcvSN1TPprVMTNDbiYZCxYbOOl7+AMvyTG2x"
crossorigin="anonymous"
/>
<link
rel="stylesheet"
href="https://pro.fontawesome.com/releases/v5.10.0/css/all.css"
integrity="sha384-AYmEC3Yw5cVb3ZcuHtOA93w35dYTsvhLPVnYs9eStHfGJvOvKxVfELGroGkvsg+p"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="./css/styles.css" />
<!-- <link
rel="stylesheet"
href="./css/bricklayer.min.css"
/> -->
<title>Les Petits Plats</title>
</head>
<body>
<header>
<img
src="./images/logo_les-petits-plats.png"
alt="logo Les petits plats"
class="mx-auto d-block"
/>
<section class="container my-3">
<form class="input-group">
<input
class="form-control search search-bar p-3"
type="text"
placeholder="Rechercher un ingrédient, un appareil, des ustensiles ou une recette"
aria-describedby="search-icon"
autofocus
/>
<div class="input-group-append">
<button class="input-group-text search-bar-btn" id="search-icon">
<i class="fas fa-search p-3"></i>
</button>
</div>
</form>
<ul role="listbox" id="search-recipe"></ul>
</section>
<section id="tags-collection" class="my-3"></section>
<nav class="my-3 tags-group">
<div class="tag-box">
<button id="ingredients-btn" class="tag-btn">
<label for="search-ingredients" class="tag-label"
>Ingrédients</label
>
<input
id="search-ingredients"
class="search-tag"
type="text"
placeholder=""
/>
<i class="fas fa-chevron-down tag-arrow"></i>
</button>
<ul
role="listbox"
id="ingredients-list"
class="tags-list scroll"
></ul>
</div>
<div class="tag-box">
<button id="appliances-btn" class="tag-btn">
<label for="search-appliances" class="tag-label"
>Appareils</label
>
<input
id="search-appliances"
class="search-tag"
type="text"
placeholder=""
/>
<i class="fas fa-chevron-down tag-arrow"></i>
</button>
<ul role="listbox" id="appliances-list" class="tags-list scroll"></ul>
</div>
<div class="tag-box">
<button id="ustensils-btn" class="tag-btn">
<label for="search-ustensils" class="tag-label">Ustensiles</label>
<input
id="search-ustensils"
class="search-tag"
type="text"
placeholder=""
/>
<i class="fas fa-chevron-down tag-arrow"></i>
</button>
<ul role="listbox" id="ustensils-list" class="tags-list scroll"></ul>
</div>
</nav>
</header>
<main>
<section id="modal"><button id="close-modal" onclick="closeModal()">X</button></section>
<section id="recipes"></section>
</main>
<script type="text/javascript" src="./js/utils.js"></script>
<script type="text/javascript" src="./js/quick_sort_Hoare.js"></script>
<script type="text/javascript" src="./js/elmts_generator.js"></script>
<script type="text/javascript" src="./js/recipe_card.js"></script>
<script type="text/javascript" src="./js/display.js"></script>
<script type="text/javascript" src="./js/search_result.js"></script>
<script type="text/javascript" src="./js/tags_events.js"></script>
</body>
</html>