{% block body %}

    {% if (setting.d_config_show_product_image == 'yes') %}
        {% set image = product.meta.image %}

        <!-- Process with Thumbnail -->
        {% if (setting.d_config_show_product_thumbnail == 'yes') %}

            {% set image = product.meta.image_thump %}
            {% if image == '' or image == '0' %}
                {% set image = default.product_image %}
            {% endif %}

        {% else %}
            <!-- Process Main Image -->
            {% if image == '' or image == '0' %}
                {% set image = default.product_image %}
            {% endif %}

        {% endif %}

        <!-- Default Image Template -->
        <img class="productImage-display" src="{{ image }}" src="" alt="No Image"
             height="300" width="300">

    {% endif %}
{% endblock %}