{% if Ressource.imagesByType('main') is not empty %}
{% set source_path = Ressource.imagesByType('main').first.path %}
{% set original_path = source_path|imagine_filter('sylius_shop_product_original') %}
{% set path = source_path|imagine_filter(filter|default('sylius_shop_product_thumbnail')) %}
{% elseif Ressource.images.first %}
{% set source_path = Ressource.images.first.path %}
{% set original_path = source_path|imagine_filter('sylius_shop_product_original') %}
{% set path = source_path|imagine_filter(filter|default('sylius_shop_product_thumbnail')) %}
{% else %}
{% set original_path = '//placehold.it/400x300' %}
{% set path = original_path %}
{% endif %}
<img src="{{ path }}" id="main-image" alt="{{ Ressource.name }}" class="ui circular image" />