Skip to content

Instantly share code, notes, and snippets.

@achingachris
Created April 19, 2023 14:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save achingachris/a4b9ce0afb678375e6b9874de5a23a60 to your computer and use it in GitHub Desktop.
Save achingachris/a4b9ce0afb678375e6b9874de5a23a60 to your computer and use it in GitHub Desktop.
List all Products
<section class="py-5">
<div class="container px-4 px-lg-5 mt-5">
<div
class="row gx-4 gx-lg-5 row-cols-2 row-cols-md-3 row-cols-xl-4 justify-content-center"
>
<div class="col mb-5">
<div class="card h-100">
<!-- Product image-->
<img
class="card-img-top"
src="https://dummyimage.com/450x300/dee2e6/6c757d.jpg"
alt="..."
/>
<!-- Product details-->
<div class="card-body p-4">
<div class="text-center">
<!-- Product name-->
<h5 class="fw-bolder">Fancy Product</h5>
<!-- Product price-->
$40.00 - $80.00
</div>
</div>
<!-- Product actions-->
<div class="card-footer p-4 pt-0 border-top-0 bg-transparent">
<div class="text-center">
<a class="btn btn-outline-dark mt-auto" href="#">View options</a>
</div>
</div>
</div>
</div>
<p>No products found</p>
</div>
</div>
</section>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment