src/Frontend/Themes/Web/Core/Layout/Templates/Section/Thank.html.twig line 1

Open in your IDE?
  1. {% import 'Core/Layout/Templates/Macro/Replace.html.twig' as txt %}
  2. <div class="center">
  3.     <section class="bg-white shadow-lg rounded-3xl text-lg/loose mx-auto mb-16 mt-32 max-w-screen-mid py-12 px-8 relative text-center" id="thank">
  4.         <div class="border-4 border-solid border-red rounded-full h-40 w-40 mx-auto mb-12 relative">
  5.             <svg viewBox="0 0 106 105" fill="none" class="h-24 w-24 absolute left-[calc(50%-3rem)] top-[calc(50%-3rem)]">
  6.                 <path class="fill-transparent stroke-red stroke-[7px] stroke-check animate-check animation-delay-500" d="M88.3332 26.25L39.7498 74.375L17.6665 52.5"/>
  7.             </svg>
  8.         </div>
  9.         <div class="mb-12 md:[&_h1]:text-[2.75rem]">{% for thankTitle in positions.thankTitle %}{% if thankTitle.html %}{{ txt.replace(thankTitle.html) }}{% endif %}{% endfor %}</div>
  10.         <div id="kontakty">{% for thankBody in positions.thankBody %}{% if thankBody.html %}{{ txt.replace(thankBody.html) }}{% endif %}{% endfor %}</div>
  11.     </section>
  12. </div>