Conception et fabrication d'emballages pour aliments frais, trouver le bon contenant pour vos besoins!

Markup Details
                            {# grid-container-large must be there to override wrapperClasses. Container size is used only for the content, not the buttons #}
<div class="paragraph--introduction {{ hideUnpublishClasses }} {{ wrapperClasses|join(' ') }} grid-container-large">
    <div class="pi__wrapper">
        <div class="pi__content mx-auto {{ text_color }} {{ containerSize }}">
            {{ content }}
        </div>
        {% set btnTypeClass = color_links is not empty ? color_links : 'btn-outline-primary' %}
        <div class="pi__link-list w-100 d-flex flex-column flex-md-row justify-content-center pb-5">
          {% if link_1 %}
            <a class="btn {{ btnTypeClass }} d-flex align-items-center justify-content-center" href="{{ link_1.getUrl().toString()}}" title="{{ link_1.title }}">
              {% if icon_1.entity.fileuri %}
                <img src="{{ file_url(icon_1.entity.fileuri) }}" alt="{{ icon_1.description }}" aria-hidden="true" />
              {% endif %}
              {{ link_1.title }}
            </a>
          {% endif %}
          {% if link_2 %}
            <a class="btn {{ btnTypeClass }} d-flex align-items-center justify-content-center" href="{{ link_2.getUrl().toString()}}" title="{{ link_2.title }}">
              {% if icon_2.entity.fileuri %}
                <img src="{{ file_url(icon_2.entity.fileuri) }}" alt="{{ icon_2.description }}" aria-hidden="true" />
              {% endif %}
              {{ link_2.title }}
            </a>
          {% endif %}
          {% if link_3 %}
            <a class="btn {{ btnTypeClass }} d-flex align-items-center justify-content-center" href="{{ link_3.getUrl().toString()}}" title="{{ link_3.title }}">
              {% if icon_3.entity.fileuri %}
                <img src="{{ file_url(icon_3.entity.fileuri) }}" alt="{{ icon_3.description }}" aria-hidden="true" />
              {% endif %}
              {{ link_3.title }}
            </a>
          {% endif %}
          {% if link_4 %}
            <a class="btn {{ btnTypeClass }} d-flex align-items-center justify-content-center" href="{{ link_4.getUrl().toString()}}" title="{{ link_4.title }}">
              {% if icon_4.entity.fileuri %}
                <img src="{{ file_url(icon_4.entity.fileuri) }}" alt="{{ icon_4.description }}" aria-hidden="true" />
              {% endif %}
              {{ link_4.title }}
            </a>
          {% endif %}
          {% if link_5 %}
            <a class="btn {{ btnTypeClass }} d-flex align-items-center justify-content-center" href="{{ link_5.getUrl().toString()}}" title="{{ link_5.title }}">
              {% if icon_5.entity.fileuri %}
                <img src="{{ file_url(icon_5.entity.fileuri) }}" alt="{{ icon_5.description }}" aria-hidden="true" />
              {% endif %}
              {{ link_5.title }}
            </a>
          {% endif %}
        </div>
    </div>
</div>