-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
213 lines (212 loc) · 6.69 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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
<!DOCTYPE html>
<html lang="es" data-bs-theme="dark">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="./styles/style.css" />
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN"
crossorigin="anonymous" />
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.1/font/bootstrap-icons.css" />
<script type="module" src="./js/index.init.js" defer></script>
<link
rel="shortcut icon"
href="./assets/img/logo.png"
type="image/x-icon" />
<title>Rolling Store | Home</title>
</head>
<body class="pt-5 mt-2">
<header></header>
<main>
<section
class="container-fluid mt-5 text-center d-flex justify-content-center align-items-center">
<img src="./assets/img/logo.png" class="img-fluid" alt="" />
<h1 class="display-2 fw-normal ms-5">Rolling Store</h1>
</section>
<section class="container mt-5 pt-5">
<form class="row g-3 align-items-center" id="formHomeFilterProducts">
<div class="col-12 col-md-4">
<div class="input-group">
<input
type="text"
class="form-control"
id="searchInput"
placeholder="Buscar por nombre" />
</div>
</div>
<div class="col-12 col-md-3">
<select class="form-select" id="priceSelect">
<option disabled selected hidden class="default" value="">
Filtrar por precio
</option>
<option value="asc">Precio ascendente</option>
<option value="desc">Precio descendiente</option>
<option value="disc">Descuento</option>
</select>
</div>
<div class="col-12 col-md-3">
<select class="form-select" id="categorySelect">
<option disabled selected hidden class="default" value="">
Filtrar por categoria
</option>
<option value="mug">Tazas</option>
<option value="notepad">Libretas</option>
<option value="keychain">Llaveros</option>
<option value="hat">Gorras</option>
<option value="bottle">Botellas</option>
</select>
</div>
<div class="col-md-2">
<button
type="button"
class="btn btn-dark border-1 border-light w-100"
id="clearFilters">
Limpiar filtros
</button>
</div>
</form>
</section>
<section class="container my-5">
<div id="cardContainer" class="row"></div>
</section>
<div
class="offcanvas offcanvas-end"
tabindex="-1"
id="cartOffcanvas"
aria-labelledby="offcanvasExampleLabel">
<div class="offcanvas-header">
<h5 class="offcanvas-title" id="offcanvasExampleLabel">Mi carrito</h5>
<button
type="button"
class="btn-close"
data-bs-dismiss="offcanvas"
aria-label="Close"></button>
</div>
<div
class="d-flex container w-100 justify-content-around align-items-center">
<h5 id="totalPrice"></h5>
<button type="button" class="btn btn-outline-light rounded rounded-5">
<a class="text-decoration-none text-light" href="/views/404.html"
>Finalizar pedido</a
>
</button>
</div>
<div class="offcanvas-body"></div>
</div>
</main>
<footer class="bgFooter">
<div class="container mt-5">
<div class="row pb-1 text-white align-items-center">
<div class="col-12 text-center p-4 py-2">
<div class="d-flex justify-content-center"></div>
</div>
<div class="col-12 col-md-4 p-4 py-2 text-center">
<a href="index.html">
<img
src="./assets/img/logo.png"
alt="Logo de Rolling Store"
class="img-fluid" />
</a>
</div>
<div class="col-12 col-md-4 py-3 text-center text-md-start">
<div class="mb-1">
<div class="mb-1">
<a
class="text-secondary text-start text-decoration-none itemFooter"
href="/views/404.html">
Sobre nosotros</a
>
</div>
<div class="mb-1">
<a
class="text-secondary text-decoration-none itemFooter"
href="/views/404.html">
Contacto</a
>
</div>
<div class="mb-1">
<a
class="text-secondary text-decoration-none itemFooter"
href="/views/404.html"
>Centro de ayuda</a
>
</div>
</div>
</div>
<div class="col-12 col-md-4 py-3 text-center text-md-start">
<div class="mb-1">
<div class="mb-1">
<a
class="text-secondary text-decoration-none itemFooter"
href="/views/404.html">
Politica de privacidad</a
>
</div>
<div class="mb-1">
<a
class="text-secondary text-decoration-none itemFooter"
href="/views/404.html">
Preferencias de cookies</a
>
</div>
<div class="mb-1">
<a
class="text-secondary text-decoration-none itemFooter"
href="/views/404.html">
Avisos legales</a
>
</div>
</div>
</div>
<div class="w-100 d-flex justify-content-center">
<div class="py-5 py-md-2 mx-3">
<a
class="h5 text-secondary text-decoration-none"
href="https://www.instagram.com/"
target="_blank">
<i class="bi bi-instagram display-5"></i>
</a>
</div>
<div class="py-5 py-md-2 mx-3">
<a
class="h5 text-secondary text-decoration-none"
href="https://www.facebook.com/"
target="_blank">
<i class="bi bi-facebook display-5"></i>
</a>
</div>
<div class="py-5 py-md-2 mx-3">
<a
class="h5 text-secondary text-decoration-none"
href="https://twitter.com"
target="_blank">
<i class="bi bi-twitter display-5"></i>
</a>
</div>
<div class="py-5 py-md-2 mx-3">
<a
class="h5 text-secondary text-decoration-none"
href="https://www.youtube.com/"
target="_blank">
<i class="bi bi-youtube display-5"></i>
</a>
</div>
</div>
<div class="col-12 pt-2 border-top border-2">
<p class="text-white text-center">
© 2022 <b>Rolling Store</b> - Todos los Derechos Reservados.
</p>
</div>
</div>
</div>
</footer>
<script
src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"
integrity="sha384-C6RzsynM9kWDrMNeT87bh95OGNyZPhcTNXj1NW7RuBCsyN/o0jlpcV8Qyq46cDfL"
crossorigin="anonymous"></script>
</body>
</html>