Last active
November 16, 2016 02:36
-
-
Save dylanjhunt/1d5b1fb8b9ce59a12880c4f8385903df to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{% if cart.item_count == 0 %} | |
<div class="sixteen columns"> | |
<div class="section clearfix"> | |
<div class="six columns offset-by-five"> | |
<p class="quote">{{ 'cart.general.continue_browsing_html' | t }}</p> | |
<a href="{% if cart.items.first.product.collections != blank %}{{ cart.items.first.product.collections.last.url }}{% else %}/collections/all{% endif %}" class="action_button continue-button add_to_cart">{{ 'cart.general.continue_shopping_link_html' | t }}</a> | |
</div> | |
<br class="clear" /> | |
</div> | |
</div> | |
{% elsif cart.items.first.variant_id == 12275195905 and cart.item_count == 1 %} | |
<div class="sixteen columns"> | |
<div class="section clearfix"> | |
<div class="six columns offset-by-five"> | |
<p class="quote">{{ 'cart.general.continue_browsing_html' | t }}</p> | |
<a href="{% if cart.items.first.product.collections != blank %}{{ cart.items.first.product.collections.last.url }}{% else %}/collections/all{% endif %}" class="action_button continue-button add_to_cart">{{ 'cart.general.continue_shopping_link_html' | t }}</a> | |
</div> | |
<br class="clear" /> | |
</div> | |
</div> | |
{% else %} | |
<form action="/cart" method="post" id="cart_form"> | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment