-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomponentes.html
56 lines (56 loc) · 1.99 KB
/
componentes.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
<!DOCTYPE html>
<html lang="es">
<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" />
<script src="helpers/include-html.min.js"></script>
<link rel="stylesheet" href="styles.css" type="text/css" />
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.7.0/css/all.css"
integrity="sha384-lZN37f5QGtY3VHgisS14W3ExzMWZxybE1SJSEsQp9S+oqd12jhcu+A56Ebc1zFSJ"
crossorigin="anonymous"
/>
<title>Componentes | Bot Comparator</title>
</head>
<body>
<wc-toast></wc-toast>
<div data-include="components/header.html"></div>
<main>
<section class="container spacer filter-content">
<form class="form-filter">
<input type="text" name="filter" placeholder="Buscar producto ..." />
</form>
<div class="select-bg">
<select name="pages">
<option value="">Filtrar por página ...</option>
<option value="" hidden disabled>All Pages</option>
<option value="CyberPuerta">CyberPuerta</option>
<option value="DDTech">DDTech</option>
<option value="XtremeTecPC">XtremeTecPC</option>
</select>
</div>
</section>
<section class="grid container"></section>
</main>
<template id="product-template">
<article class="card">
<div class="top-card">
<h2 class="page-name">Pagina</h2>
<img src="" alt="" />
</div>
<div class="bottom-card">
<h3 class="product-title">Titulo</h3>
<p class="product-price">Precio</p>
<div class="product-stock">
<img id="stock" src="" alt="" />
<span id="stock-text"></span>
</div>
<button class="btn-card" id="btn-add">Agregar a la lista</button>
</div>
</article>
</template>
<script src="js/products.js" type="module"></script>
</body>
</html>