Anatolia Publishing

{% if collection.handle %}
{{ collection.title }}
{% endif %}
{% comment %} Optionally show the 'compare at' or original price of the product. {% endcomment %}
{{ product.title }}
{% if section.settings.product_vendor_enable %}{{ product.vendor | link_to_vendor }}
{% endif %}{% comment %} Optionally show the 'compare at' or original price of the product. {% endcomment %}
{% if product.compare_at_price_max > product.price %}
{{ 'products.general.sale_price' | t }}
{% else %}
{{ 'products.general.regular_price' | t }}
{% endif %}
product.price %} class="on-sale"{% endif %}>
{{ product.price | money }}
{% if product.compare_at_price_max > product.price %}
{{ 'products.general.regular_price' | t }}
{{ product.compare_at_price_max | money }}
{% endif %}
{%- if shop.taxes_included or shop.shipping_policy.body != blank -%}
{%- if shop.taxes_included -%}
{{ 'products.general.include_taxes' | t }}
{%- endif -%}
{%- if shop.shipping_policy.body != blank -%}
{{ 'products.general.shipping_policy_html' | t: link: shop.shipping_policy.url }}
{%- endif -%}
{%- endif -%}
{% assign featured_image = product.selected_or_first_available_variant.featured_image | default: product.featured_image %}
{% for image in product.images %}
{% capture img_id %}ProductImage-{{ image.id }}{% endcapture %}
{% capture img_wrapper_id %}ProductImageWrapper-{{ image.id }}{% endcapture %}
{%- assign img_url = image | img_url: '1x1' | replace: '_1x1.', '_{width}x.' -%}
{% include 'image-style' with image: image, small_style: false, width: 480, height: 480, wrapper_id: img_wrapper_id, img_id: img_id %}
{% endfor %}
{% comment %}
Create thumbnails if we have more than one product image
{% endcomment %}
{% if product.images.size > 1 %}
{% else %}
{% endif %}
{% comment %}
Get first variant, or deep linked one
{% endcomment %}
{% assign variant = product.selected_or_first_available_variant %}
{% comment %}
ID addToCartForm is a selector for the ajaxify cart plugin
{% endcomment %}
{% capture 'form_id' %}addToCartForm-{{ section.id }}{% endcapture %}
{% form 'product', product, id:form_id, class: 'product-single__form', data-product-form: '' %}
{% comment %}
Add product variants as a dropdown.
- By default, each variant (or combination of variants) will display as its own
{{ product.description }}
{% if section.settings.share_enable %}
{% include 'social-sharing' %}
{% endif %}