-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlista.html
57 lines (54 loc) · 1.87 KB
/
lista.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
<!DOCTYPE html>
<html lang="en">
<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" />
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.7.0/css/all.css"
integrity="sha384-lZN37f5QGtY3VHgisS14W3ExzMWZxybE1SJSEsQp9S+oqd12jhcu+A56Ebc1zFSJ"
crossorigin="anonymous"
/>
<title>Lista | Bot Comparator</title>
</head>
<body>
<div data-include="components/header.html"></div>
<main class="list-main">
<section class="container-list">
<h1>Lista de productos</h1>
<hr />
<h2 class="no-items none">No hay productos en la lista</h2>
</section>
<section class="list-info">
<h3 id="total-products-list">Productos: 2</h3>
<h3 id="total-list">Total: $3,000,000</h3>
</section>
</main>
<template id="carrito-card-template">
<article class="list-card">
<img src="" alt="" />
<div class="info-list-container">
<div class="left-info-list">
<h3 class="product-title">Title</h3>
<h2 class="page-name">Pagina</h2>
</div>
<div class="right-info-list">
<p class="product-price">Precio</p>
<div class="product-quantity">
<div>
<button class="btn-list" id="btn-minus">-</button>
<span class="cantidad-item">1</span>
<button class="btn-list" id="btn-plus">+</button>
</div>
<button class="btn-list" id="delete-item">Eliminar</button>
</div>
</div>
</div>
</article>
</template>
<script src="js/list.js" type="module"></script>
</body>
</html>