How to display product descriptions for only the first two items?

How can i show product description for only first 2 products from list of products?

can you share your store Url

I can share the code

{% for block in section.blocks %}

{% assign product = all_products[block.settings.produit] %}

{{ product.title }}

{{ product.description }}

{% if product.variants.size > 1 %} {% endif %} {% if product.variants != blank %} {% endif %}
{% endfor %}

Can You Share Full Code with Css And schema

Replace Your Code With This code.

{% assign counter = 0 %}

{% for block in section.blocks %}
  {% assign product = all_products[block.settings.produit] %}
  
    

      
        ## {{ product.title }}
        {% if counter < 2 %}
          

{{ product.description }}

        {% endif %}
        
      
      {% if product.variants.size > 1 %}
        

          {% for variant in product.variants %}
            - {{ variant.title }}
          {% endfor %}
        

      {% endif %}
      {% if product.variants != blank %}
        
          Browse Now
        

      {% endif %}
    

  

  {% assign counter = counter | plus: 1 %}
{% endfor %}