Files
internship_node/day13/views/index.jade
T

21 lines
658 B
Plaintext
Raw Normal View History

2022-02-06 22:17:54 -05:00
extends layout
block content
h1= title
2025-07-17 21:55:47 +01:00
a.btn.btn-success.mb-4(href="/create-product") Create Product
if products && products.length
.row
each product in products
.col-md-4.mb-4
.card
if product.image
img.card-img-top(src=product.image, alt=product.title, style="width:100px;height:100px;object-fit:contain;")
.card-body
h5.card-title= product.title
p.card-text= product.description
p.card-text
strong $#{product.price}
a.btn.btn-primary(href=`/product/${product.id}`) View Details
else
p No products found.