See the full Cart & Checkout folder structure here:
wrapper.liquid
The wrapper.liquid file should contain the code for the main section of code that wraps around the loop of Products in the Cart. It should include the following liquid to insert the loop of Products:
</div>
</div>
#### Empty the Cart
`<button onclick="s_e_cart_empty(true)">Empty Cart</button>`
#### Link to the Checkout Page
Of course, this is just an ordinary link. It will need updating with the slug of your Checkout Page: `<a href="/checkout>Proceed to checkout</a>`
### Reference
The following reference shows how to output useful data about your Cart as a whole:
<table data-full-width="true"><thead><tr><th>Field Name</th><th>Liquid Tag</th></tr></thead><tbody><tr><td>Total Quantity</td><td><code>{{context.exports.cart_total_quantity.data}}</code></td></tr><tr><td>Shipping Price</td><td><code>
<div data-gb-custom-block data-tag="include" data-0='ecommerce/price_shipping' data-1='formatted' data-2='formatted'></div></code></td></tr><tr><td>Shipping Price Before Tax</td><td><code><div data-gb-custom-block data-tag="include" data-0='ecommerce/price_shipping_before_tax' data-1='formatted' data-2='formatted'></div></code></td></tr><tr><td>Shipping Price Tax Amount</td><td><code><div data-gb-custom-block data-tag="include" data-0='ecommerce/price_shipping_tax_amount' data-1='formatted' data-2='formatted'></div></code></td></tr><tr><td>Total Item Price</td><td><code><div data-gb-custom-block data-tag="include" data-0='ecommerce/price_total_item_cost' data-1='formatted' data-2='formatted'></div></code></td></tr><tr><td>Total Item Price before Tax</td><td><code><div data-gb-custom-block data-tag="include" data-0='ecommerce/price_total_item_before_tax' data-1='formatted' data-2='formatted'></div></code></td></tr><tr><td>Total Item Tax Amount</td><td><code><div data-gb-custom-block data-tag="include" data-0='ecommerce/price_total_item_tax_amount' data-1='formatted' data-2='formatted'></div></code></td></tr><tr><td>Total Price Reduction (due to discounts)</td><td><code><div data-gb-custom-block data-tag="include" data-0='ecommerce/price_total_reduction' data-1='formatted' data-2='formatted'></div></code></td></tr><tr><td>Final Total Price before Tax</td><td><code><div data-gb-custom-block data-tag="include" data-0='ecommerce/price_total_before_tax' data-1='formatted' data-2='formatted'></div></code></td></tr><tr><td>Final Total Tax Amount</td><td><code><div data-gb-custom-block data-tag="include" data-0='ecommerce/price_total_tax_amount' data-1='formatted' data-2='formatted'></div></code></td></tr><tr><td>Final Total Price</td><td><code><div data-gb-custom-block data-tag="include" data-0='ecommerce/price_total' data-1='formatted' data-2='formatted'></div>
</code></td></tr></tbody></table>
If you have added Product Attributes to the Products in the Siteglide Admin, you can also access the `cart_product_attributes` with the following liquid: `{{ context.exports.cart_product_attributes }}`
Normally though, Attributes will be handled in the next step- the item.liquid file.
### item.liquid
The cart layout will iterate in a loop, outputting the item.liquid file for each line in the customer's cart. 
<div data-gb-custom-block data-tag="hint" data-style='info'>
**`cart_id`**
Each line in the cart has a `cart_id` accessible at `{{this.cart_data.cart_id}}.` \
\
When modifying the cart with JS, this `cart_id` will be needed.\
\
Multiple lines in the cart may refer to the same product if a different combination of attributes is selected.
</div>
 Building the Cart's item.liquid file is similar to building an item.liquid layout file for a Product List View. Learn more about the available fields [here](https://developers.siteglide.com/liquid-reference-for-product-and-attribute-layouts).
There are some additional points to bear in mind when creating a cart layout's item.liquid file:
#### Removing an individual Product from the Cart:
The `s_e_cart_remove` function can be used to remove a line from the cart.
If the cart has several lines containing the same product, but with different attributes, only the targeted line and its attributes will be removed.
In this example, the function is called when a button is clicked and Liquid is used to pass the cart ID into the function:
<div data-gb-custom-block data-tag="tabs">
<div data-gb-custom-block data-tag="tab" data-title='item.liquid'>
```liquid
<button onclick="s_e_cart_remove(true,{{this.cart_data.cart_id}})">
Remove Item from Cart
</button>
You can optionally pass in a callback function to the third argument to be called after the row has been removed from the cart. In order for this to work, you need to set reload (the first argument) to false.
<buttononclick="s_e_cart_remove(false,{{this.cart_data.cart_id}},removeCallback)"> Remove Item from Cart</button>
Note that, after updating this input field, the User will also have to click the "Update Cart" button. Following the link above will lead to a more detailed article.
Outputting the Attributes the User chose for this item:
{% include'ecommerce/cart_product_attributes' %}
Controlling Inventory
In order to make sure Users do not increase the quantity of items in their Cart, when the Product is out of stock, you could add a "max" attribute to the quantity input: