-
Notifications
You must be signed in to change notification settings - Fork 0
/
products.html
110 lines (106 loc) · 4.59 KB
/
products.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
<!DOCTYPE html>
<!-- saved from url=(0049)https://getbootstrap.com/docs/4.3/examples/album/ -->
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="">
<title>eMercado - Todo lo que busques está aquí</title>
<link rel="canonical" href="https://getbootstrap.com/docs/4.3/examples/album/">
<link href="https://fonts.googleapis.com/css?family=Raleway:300,300i,400,400i,700,700i,900,900i" rel="stylesheet">
<link href="css/font-awesome.min.css" rel="stylesheet">
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/styles.css" rel="stylesheet">
</head>
<body>
<nav class="site-header sticky-top py-1 bg-dark">
<div id="navBar" class="container d-flex flex-column flex-md-row justify-content-between">
<a class="py-2 d-none d-md-inline-block" href="home.html">Inicio</a>
<a class="py-2 d-none d-md-inline-block" href="categories.html">Categorías</a>
<a class="py-2 d-none d-md-inline-block" href="products.html">Productos</a>
<a class="py-2 d-none d-md-inline-block" href="sell.html">Vender</a>
<!--<a class="py-2 d-none d-md-inline-block" href="cart.html">Mi carrito</a>
<a class="py-2 d-none d-md-inline-block" href="my-profile.html">Mi usuario es: <span id="name"></span></a>-->
</div>
</nav>
<main role="main" class="pb-5">
<div class="text-center p-4">
<h2>Productos</h2>
<p class="lead">Aqui veras los productos.</p>
</div>
<div class="container">
<div class="row">
<div class="col text-right">
<div class="btn-group btn-group-toggle mb-4" data-toggle="buttons">
<label class="btn btn-light active" id="sortAsc">
<input type="radio" name="options" autocomplete="off" checked>Precio ascendente
</label>
<label class="btn btn-light" id="sortDesc">
<input type="radio" name="options" autocomplete="off">Precio descendente
</label>
<label class="btn btn-light" id="sortBySoldCount">
<input type="radio" name="options" autocomplete="off"><i
class="fas fa-sort-amount-down mr-1"></i>Relevancia
</label>
</div>
</div>
</div>
<div class="row justify-content-end">
<div class="col-md-6"></div>
<div class="col-md-6 col-sm-12 mb-1 container">
<div class="row container p-0 m-0">
<div class="col">
<p class="font-weight-normal text-right my-2">Rango precio</p>
</div>
<div class="col">
<input class="form-control" type="number" placeholder="min." id="rangeFilterCountMin">
</div>
<div class="col">
<input class="form-control" type="number" placeholder="máx." id="rangeFilterCountMax">
</div>
<div class="col-3 p-0">
<div class="btn-group" role="group">
<button class="btn btn-light btn-block" id="rangeFilterCount">Filtrar</button>
<button class="btn btn-link btn-sm" id="clearRangeFilter">Limpiar</button>
</div>
</div>
</div>
</div>
</div>
<div class="album py-5 bg-light">
<div class="container">
<div class="row " id="product-list-container">
</div>
</div>
</div>
<!--<div class="alert alert-danger" role="alert" style="position: relative; width:auto; top: 0;">
<h4 class="alert-heading">¡A trabajar! :)</h4>
<p>Esta sección corresponde a: Entrega 1 (Fecha de entrega: 22/08/2021) y Entrega 2 (Fecha de entrega: 05/09/2021).</p>
<hr>
<p class="mb-0">Para saber qué debes hacer, fijate en la actividad en CREA correspondiente a esta entrega.</p>
</div>
</div>-->
<footer class="text-muted bg-light">
<div class="container">
<p class="float-right">
<a href="#">Volver arriba</a>
</p>
<p>Este sitio forma parte de Desarrollo Web - JAP - 2020</p>
<p>Clickea <a target="_blank" href="Letra.pdf">aquí</a> para descargar la letra del obligatorio.</p>
</div>
</footer>
</main>
<div id="spinner-wrapper">
<div class="lds-ring">
<div></div>
<div></div>
<div></div>
<div></div>
</div>
</div>
<script src="js/jquery-3.4.1.min.js"></script>
<script src="js/bootstrap.bundle.min.js"></script>
<script src="js/init.js"></script>
<script src="js/products.js"></script>
</body>
</html>