Produktvergleich Twig Bilder 2 - 4 (pad/auffüllen)

Hallo. ich brauche für einen Produktvergleich 4 Bilder.
1 cover bild und dann 3 weitere Produktbilder.
Wie kann ich es auffüllen, so dass folgendes herauskommt.

"cover";"bild2";"bild3";""; oder
"cover";"";"";""; oder
.....?

Hier ist mein Twig:

"{% if product.cover is not null %}{{ product.cover.media.url }}{% endif %}";{#- -#}
{%- if product.media|length > 1 -%}
    {%- for mediaAssociation in product.media|slice(1,3) -%}
        "{{ mediaAssociation.media.url }}"
        {%- if not loop.last -%};{%- endif -%}
    {%- endfor -%}
{%- endif -%}{#- -#}

Danke und Gruss

Hey,

das sollte so funktionieren:

{% if page.product.cover is not null %}
    {{ page.product.cover.media.url }}
{% else %}
    "";
{% endif %}
{% if page.product.media|length > 1 %}
    {% for mediaAssociation in page.product.media|slice(1,3) %}
        {% if mediaAssociation.media.url %}
            {{ mediaAssociation.media.url }};
        {% else %}
            "";
        {% endif %}
    {% endfor %}
{% else %}
    {% for i in 0..2 %}
        "";
    {% endfor %}
{% endif %}

Berücksichtigt ist dabei, ob das Produkt mehr als 4 Bilder hat, das Produkt keine Bilder hat oder eben nur ein Bild hinterlegt ist.

Grüße

Leider geht das nicht weil es nicht auffüllt.

Ich habe nur Frankenstein geschaffen:

{%-if product.media|length > 1 -%}
         {%- for mediaAssociation in product.media|slice(1,1) -%}
            {%- if mediaAssociation.media.url -%}
                "{{ mediaAssociation.media.url }}";
            {%- endif -%}
         {%- endfor -%}
    {%- else -%}
        "";
    {%- endif -%}
     {%-if product.media|length > 2 -%}
         {%- for mediaAssociation in product.media|slice(2,1) -%}
            {%- if mediaAssociation.media.url -%}
                "{{ mediaAssociation.media.url }}";
            {%- endif -%}
         {%- endfor -%}
     {%- else -%}
        "";
    {%- endif -%}
     {%-if product.media|length > 3 -%}
         {%- for mediaAssociation in product.media|slice(3,1) -%}
            {%- if mediaAssociation.media.url -%}
                "{{ mediaAssociation.media.url }}";
            {%- endif -%}
         {%- endfor -%}
    {%- else -%}
        "";     
    {%- endif -%}