{% extends CMS_TEMPLATE %} {% load i18n l10n cms_tags pcart_catalog pcart_core theme_tags pcart_reviews pcart_statistics thumbnail staticfiles %} {% block title %}{{product|default:product.page_title}}{% endblock %} {% block breadcrumb %}{% include "catalog/_product_breadcrumb.html" %}{% endblock %} {% block sidebar %} Under construction {% endblock %} {% block content %}
{% with p_images=product.images.all %} {% if p_images %} {% if p_images|len > 1 %} {% with image=p_images.first %} {{image}} {% endwith %} {% else %} {% for image in p_images %} {{image}} {% endfor %} {% endif %} {% endif %} {% endwith %}
{{product.title}}
{% if product.available %}

{% else %}

{{product.status}}

{% endif %}
{% trans "Type" %}: {{product.product_type|default:"-"}}
{% trans "Vendor" %}: {{product.vendor|default:"-"}}
{% for prop in product.product_type.properties.all %} {% with value=product.properties|get_element:prop.title %} {% if value %}
{% trans prop.title %}: {{value}}
{% endif %} {% endwith %} {% endfor %}
{% if product.description %}

{% trans "Description" %}:

{{ product.description }}
{% endif %} {% include 'snippets/snippet-addthis.html' %}
{# include 'widget-related-products' #} {% if product.available %} {% endif %} {% endblock %} {% block extra_js %} {# 'option_selection.js'|shopify_asset_url|script_tag #} {{ 'jquery.bxslider.min.js'|asset_url|script_tag }} {{ 'jquery.elevatezoom.js'|asset_url|script_tag }} {{ 'jquery.fancybox.min.js'|asset_url|script_tag }} {% track_product_visit product %} {% endblock %}