Sha256: aa5cadcfe658376a7aba1b84110caa0589e2617878b617f29309ed1943a6212a
Contents?: true
Size: 1.4 KB
Versions: 122
Compression:
Stored size: 1.4 KB
Contents
<h3>Shopping Cart</h3> <% if (!order.line_items.length) { %> <p>Your cart is currently empty. <a href="/products">Click here</a> to continue shopping.</p> <% } else { %> <ul> <li> <header>Quantity</header> <header>Price</header> </li> <% _.each(order.line_items, function(lineItem) { %> <li data-id="<%= lineItem.id %>"> <section> <% if (lineItem.variant.images.length > 0) { %> <figure style="background-image: url(<%= lineItem.variant.images[0].urls.thumb %>)"></figure> <% } else { %> <figure style="background-image: url(<%= lineItem.product.images[0].urls.thumb %>)"></figure> <% } %> <p><%= lineItem.title %><br /><a id="remove-from-cart"t="remove">Remove</a><a href="/products/<%= lineItem.variant.product_id %>">View</a></p> </section> <section> <input name="quantity" type="text" value="<%= lineItem.quantity %>" /> </section> <section> <p class="price">$<%= parseFloat(Math.round(lineItem.price * 100) / 100).toFixed(2) %></p> </section> </li> <% }); %> <li> <footer> <a href="/checkout" class="btn blue">Checkout</a> <h4>Subtotal: <span class="subtotal">$<%= parseFloat(Math.round(order.subtotal * 100) / 100).toFixed(2) %></span></h4> </footer> </li> </ul> <% } %>
Version data entries
122 entries across 122 versions & 2 rubygems