-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcart.html.haml
35 lines (34 loc) · 1.03 KB
/
cart.html.haml
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
%section.page-content
.container.full
%article.entry.cart
.cart-wrapper
.cart-list
%header#page-header
%h1 Your Cart
%ul.cart-items
%li.item
=image_tag "/images/products/cart1.png"
%span.remove
%h5.delta Heritage Shirt in Indigo
%span.price.delta $450.00
%li.item
=image_tag "/images/products/cart2.png"
%span.remove
%h5.delta Denim Mens Shorts
%span.price.delta $70.00
.totals
%h6 Your Order
%p.font_small Shipping is calculated automatically based on your location.
%table
%tr
%th Products
%td $525.00
%tr.shipping
%th Shipping
%td
$50.00
%a{:href => "#"} Calculate
%tr
%th Total
%td $575.00
=link_to "Checkout", "/checkout", :class => "button dark block"