{% extends 'base.html.twig' %} {% block content %}

{{ content.title }}

{% for block in content.sections %} {% if block.type == 'text' %}
{{ block.text|raw }}
{% elseif block.type == 'product_grid' %}
{% if block.title is not empty %}

{{ block.title }}

{% endif %} {% if block.product_ids is not empty %}
{% for product in block.product_ids %} {{ include('articles/_product_card.html.twig') }} {% endfor %}
{% endif %}
{% elseif block.type == 'hero' %}

{{ block.title }}

{% if block.subtitle is not empty %}

{{ block.subtitle }}

{% endif %} {% if block.cta_label is not empty and block.cta_url is not empty %} {{ block.cta_label }} {% endif %}
{% elseif block.type == 'text_image' %}
{{ block.text|raw }}
{% if block.image is not empty %}
{{ block.image.title ?? '' }}
{% endif %}
{% elseif block.type == 'cta' %}
{{ block.label }}
{% endif %} {% endfor %}
{% endblock %}