112 lines
5.9 KiB
Plaintext
112 lines
5.9 KiB
Plaintext
- var theme_customizer = true;
|
|
- var touchspin = true;
|
|
doctype html
|
|
html(lang='en')
|
|
include ../../components/header-files
|
|
body
|
|
include ../../components/loader
|
|
// page-wrapper Start
|
|
#pageWrapper.page-wrapper
|
|
include ../../components/header
|
|
// Page Body Start
|
|
.page-body-wrapper.horizontal-menu
|
|
include ../../components/sidebar
|
|
.page-body
|
|
.container-fluid
|
|
.page-header
|
|
.row
|
|
.col-sm-6
|
|
.page-header-left
|
|
h3 Cart
|
|
ol.breadcrumb
|
|
li.breadcrumb-item
|
|
a(href='index.html')
|
|
| Home
|
|
li.breadcrumb-item Pages
|
|
li.breadcrumb-item Ecommerce
|
|
li.breadcrumb-item.active Cart
|
|
.col-sm-6
|
|
include ../../components/bookmark
|
|
// Container-fluid starts
|
|
.container-fluid
|
|
.row
|
|
.col-sm-12
|
|
.card
|
|
.card-header.pb-0
|
|
h5 Cart
|
|
.card-body
|
|
.row
|
|
.order-history.table-responsive.wishlist
|
|
table.table.table-bordered
|
|
thead
|
|
tr
|
|
th Prdouct
|
|
th Prdouct Name
|
|
th Price
|
|
th Quantity
|
|
th Action
|
|
th Total
|
|
tbody
|
|
tr
|
|
td
|
|
img.img-fluid.img-40(src='assets/images/product/1.png' alt='#')
|
|
td
|
|
.product-name
|
|
a(href='#')
|
|
h6 Long Top
|
|
td $21
|
|
td
|
|
fieldset.qty-box
|
|
.input-group
|
|
input.touchspin.text-center(type='text' value='5')
|
|
td
|
|
i(data-feather='x-circle')
|
|
td $12456
|
|
tr
|
|
td
|
|
img.img-fluid.img-40(src='assets/images/product/13.png' alt='#')
|
|
td
|
|
.product-name
|
|
a(href='#')
|
|
h6 Fancy watch
|
|
td $50
|
|
td
|
|
fieldset.qty-box
|
|
.input-group
|
|
input.touchspin.text-center(type='text' value='5')
|
|
td
|
|
i(data-feather='x-circle')
|
|
td $12456
|
|
tr
|
|
td
|
|
img.img-fluid.img-40(src='assets/images/product/4.png' alt='#')
|
|
td
|
|
.product-name
|
|
a(href='#')
|
|
h6 Man shoes
|
|
td $11
|
|
td
|
|
fieldset.qty-box
|
|
.input-group
|
|
input.touchspin.text-center(type='text' value='5')
|
|
td
|
|
i(data-feather='x-circle')
|
|
td $12456
|
|
tr
|
|
td(colspan='4')
|
|
.input-group
|
|
input.form-control.me-2(type='text' placeholder='Enter coupan code')
|
|
a.btn.btn-primary(href='#') Apply
|
|
td.total-amount
|
|
h6.m-0.text-end
|
|
span.f-w-600 Total Price :
|
|
td
|
|
span $6935.00
|
|
tr
|
|
td.text-end(colspan='5')
|
|
a.btn.btn-secondary.cart-btn-transform(href='product.html') continue shopping
|
|
td
|
|
a.btn.btn-success.cart-btn-transform(href="checkout.html") check out
|
|
// Container-fluid Ends
|
|
include ../../components/footer
|
|
include ../../components/footer-files |