{% for plan in plans %}
{% if highlightedPlan == loop.index0 %}
{{ plan.badge|default('Populaire') }}
{% endif %}

{{ plan.name }}

{% if showCurrency %}{{ currency }}{% endif %}{{ plan.price }}
{% if plan.period %}
{{ plan.period }}
{% endif %}
{% if plan.description %}

{{ plan.description }}

{% endif %} {% if plan.features %}
    {% for feature in plan.features %}
  • {{ feature.text|default(feature) }}
  • {% endfor %}
{% endif %} {% set buttonText = plan.buttonText|default(plan.buttonLabel|default('')) %} {% if buttonText %} {{ buttonText }} {% endif %}
{% endfor %}