cart.liquid

738 B · text · 20 lines

1<h1>Cart</h1>2{% if cart.item_count == 0 %}3<p>Empty. <a href="https://carlomitchener.com/">Back to carlomitchener.com</a></p>4{% else %}5<form action="{{ routes.cart_url }}" method="post">6<table>7{% for item in cart.items %}8<tr>9<td>{{ item.product.title }} {{ item.variant.title }}</td>10<td><input type="number" name="updates[]" value="{{ item.quantity }}" min="0" size="2"></td>11<td>{{ item.final_line_price | money }}</td>12</tr>13{% endfor %}14<tr><td>Total</td><td></td><td>{{ cart.total_price | money }}</td></tr>15</table>16<button type="submit" name="update">Update</button>17<button type="submit" name="checkout">Checkout</button>18</form>19<p><a href="https://carlomitchener.com/cart/">Back to carlomitchener.com</a></p>20{% endif %}