templates/includes/blocks/projectSingleParamsSection.html.twig line 1

Open in your IDE?
  1. <section class="pb-14 lg:pb-16"
  2.   section-shade="light">
  3.   <div class="big-container">
  4.     {# Description Items wrapper #}
  5.     <div class="flex flex-wrap xl:justify-between border border-gray divide-y md:divide-y-0 md:divide-x divide-gray"
  6.       style="background-image: repeating-linear-gradient(0deg, #F0F0F0, #F0F0F0 1px, transparent 2px, transparent 109px)"
  7.       batch-wrapp>
  8.       
  9.     {% for item in content.parametres %}
  10.       {% if item.parametresType == 'numberOfLots' %}
  11.       <div
  12.         class="flex items-center md:justify-center h-[109px] xl:justify-start w-full xl:w-fit lg:max-w-[50%] 2lg:max-w-[50%] 2xl:max-w-[25%] gap-4 px-8 py-6 md:py-7"
  13.         fade
  14.         fade-trigger="batch">
  15.         <svg class="shrink-0 w-8 h-8">
  16.           <use xlink:href="#lots"></use>
  17.         </svg>
  18.         <div>
  19.           <p class="text-sm font-medium opacity-70">
  20.             {{ item.parametresTitle }}
  21.           </p>
  22.           <p class="text-2xl md:whitespace-nowrap">{{item.parametresDetails | raw}}</p>
  23.         </div>
  24.       </div>
  25.       {% endif %}
  26.       
  27.       {% if item.parametresType == 'architect' %}
  28.       <div
  29.         class="flex items-center md:justify-center h-[109px] xl:justify-start w-full md:w-1/2 xl:w-fit lg:max-w-[50%] 2xl:max-w-[25%] gap-4 px-8 py-6 md:py-7 md:-order-1 xl:order-none md:!border-b xl:!border-b-0 md:border-gray"
  30.         fade
  31.         fade-trigger="batch">
  32.         <svg class="shrink-0 w-8 h-8">
  33.           <use xlink:href="#architect"></use>
  34.         </svg>
  35.         <div>
  36.           <p class="text-sm font-medium opacity-70">
  37.             {{ item.parametresTitle }}
  38.           </p>
  39.           <p class="text-2xl md:whitespace-nowrap">{{item.parametresDetails | raw}}</p>
  40.         </div>
  41.       </div>
  42.       {% endif %}
  43.     
  44.       {% if item.parametresType == 'entrepriseGenerale' %}
  45.       <div
  46.         class="flex items-center md:justify-center h-[109px] xl:justify-start w-full md:w-1/2 xl:w-fit lg:max-w-[50%] 2xl:max-w-[25%] gap-4 px-8 py-6 md:py-7 md:-order-1 xl:order-none md:!border-b xl:!border-b-0 md:border-gray"
  47.         fade
  48.         fade-trigger="batch">
  49.         <svg class="shrink-0 w-8 h-8">
  50.           <use xlink:href="#status"></use>
  51.         </svg>
  52.         <div>
  53.           <p class="text-sm font-medium opacity-70">
  54.             {{ item.parametresTitle }}
  55.           </p>
  56.           <p class="text-2xl md:whitespace-nowrap">{{item.parametresDetails | raw}}</p>
  57.         </div>
  58.       </div>
  59.       {% endif %}
  60.       {% if item.parametresType == 'surface' %}
  61.       <div
  62.         class="flex items-center md:justify-center h-[109px] xl:justify-start w-full xl:w-fit lg:max-w-[50%] 2lg:max-w-[50%] 2xl:max-w-[25%] gap-4 px-8 py-6 md:py-7"
  63.         fade
  64.         fade-trigger="batch">
  65.         <svg class="shrink-0 w-8 h-8">
  66.           <use xlink:href="#surface"></use>
  67.         </svg>
  68.         <div>
  69.           <p class="text-sm font-medium opacity-70">
  70.             {{ item.parametresTitle }}
  71.           </p>
  72.           <p class="text-2xl md:whitespace-nowrap">{{item.parametresDetails | raw}}
  73.             m<sup>2</sup>
  74.           </p>
  75.         </div>
  76.       </div>
  77.       {% endif %}
  78.       {% if item.parametresType == 'parkingNumbers' %}
  79.       <div
  80.         class="flex items-center md:justify-center h-[109px] xl:justify-start w-full xl:w-fit lg:max-w-[50%] 2lg:max-w-[50%] 2xl:max-w-[25%] gap-4 px-8 py-6 md:py-7"
  81.         fade
  82.         fade-trigger="batch">
  83.         <svg class="shrink-0 w-8 h-8">
  84.           <use xlink:href="#parking"></use>
  85.         </svg>
  86.         <div>
  87.           <p class="text-sm font-medium opacity-70">
  88.             {{ item.parametresTitle }}
  89.           </p>
  90.           <p class="text-2xl md:whitespace-nowrap">{{item.parametresDetails | raw}}</p>
  91.         </div>
  92.       </div>
  93.       {% endif %}
  94.     
  95.       {% endfor %}
  96.       </div>
  97.   </div>
  98. </section>