{% import "@SyliusShop/Common/Macro/money.html.twig" as money %}
{% include '@SyliusShop/Product/_mainImage.html.twig' with {'product': product, 'class': 'card-img-top border border-light bg-light'} %}
{{ product.name }}
{% if not product.enabledVariants.empty() %} {% set variant = product|sylius_resolve_variant %} {% set price = money.calculatePrice(variant) %} {% set original_price = money.calculate_original_price(variant) %} {% set applied_promotions = variant.getappliedPromotionsForChannel(sylius.channel) %} {% if applied_promotions %}
{% include '@SyliusShop/Product/Show/_catalogPromotionLabels.html.twig' with {'applied_promotions': applied_promotions, 'withDescription': false} %}
{% endif %}
{{ price }} {% if variant|sylius_has_discount({'channel': sylius.channel}) %} {{ original_price }} {% endif %}
{% endif %}