-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathindex.html
52 lines (51 loc) · 2.04 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Tiendas oficiales</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<input id="searchInput" type="search" placeholder="Buscar...">
<button id="searchBtn">Buscar</button>
</header>
<div id="main">
<aside class="aside">
<h4>Rango de precios</h4>
<div>
<input id="priceFilterMin" class="price-input-filter" type="text" placeholder="min">
<input id="priceFilterMax" class="price-input-filter" type="text" placeholder="max">
<button id="priceFilterBtn">>></button>
</div>
<h4>O refinar por</h4>
<div>
<select name="" id="condition-filter">
<option value="" selected="selected">------</option>
<option value="new">Nuevo</option>
<option value="used">Usado</option>
</select>
</div>
<h4>Resultados por página</h4>
<input type="text" class="page-input-filter">
</aside>
<div id="content">
<ul id="listItemContainer" class="list-container">
</ul>
<div class="paging-controls-container">
<a href="#"><<</a> | <a href="#">>></a>
</div>
</div>
</div>
<footer></footer>
<script src="app.js"></script>
<script src="components/utils/index.js"></script>
<script src="components/ui/index.js"></script>
<script src="components/cursor/index.js"></script>
<script src="components/api/index.js"></script>
<script src="ui-components/pager/index.js"></script>
<script src="ui-components/searcher/index.js"></script>
<script src="ui-components/range-filter/index.js"></script>
</body>
</html>