i can’t able to view swiper slides ( 3 grid layout ) on preview , please help me to solve this
{% render 'title-container' %}
{% if show_desktop_slider %}
{% endif %}
{%- for i in (1..2) -%}
{%- for block in section.blocks -%}
{%- endfor -%}
{%- endfor -%}
{%- if block.settings.image != blank -%}
{%- assign alt_text = block.settings.image.alt | escape -%}
{%- if alt_text == blank -%}
{%- assign alt_text = block.settings.title | escape -%}
{%- endif -%}
{{
block.settings.image
| image_url: width: 275
| image_tag: class: 'img-fluid w-100 h-100 object-fit-contain', loading: 'lazy', alt: alt_text
}}
{%- elsif block.settings.svg_icons != blank -%}
{{ block.settings.svg_icons }}
{%- else -%}
{%- assign placeholder_image_index = forloop.index0 | modulo: 3 | plus: 1 -%}
{%- assign placeholder_image = 'collection-' | append: placeholder_image_index -%}
{%- if placeholder_image -%}
{{ placeholder_image | placeholder_svg_tag: 'card-img-top' }}
{% endif %}
{%- endif -%}
{%- if block.settings.title != blank -%}
{{ block.settings.title | escape }}
{%- endif -%} {%- if block.settings.text != blank -%}
{{ block.settings.text | strip_html }}
{%- endif -%}