templates/frontend/MatchPlay/bracket-screen/bracket-header-screen.html.twig line 1

Open in your IDE?
  1. <div class="bg-white relative overflow-hidden mb-6">
  2. {#    <div class="absolute z-0 w-full h-full text-black transform ">#}
  3. {#        <svg class="opacity-5 transform scale-50" viewBox="100 0 1000 200" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">#}
  4. {#            <use xlink:href="#{{ fede }}"></use>#}
  5. {#        </svg>#}
  6. {#    </div>#}
  7.     <div class="max-w-7xl mx-auto py-2 px-4">
  8.         <div class="text-center">
  9.             <h2 class="text-base font-semibold text-indigo-600 tracking-wide uppercase">{{ competicion.club.cliente.nombre }}</h2>
  10.             <p class="text-4xl font-extrabold text-gray-900 sm:text-5xl sm:tracking-tight lg:text-6xl">{{ competicion.nombre }}</p>
  11.             <p class="max-w-xl mt-4 mx-auto text-xl text-gray-500">
  12.                 {% set firstRound = data.rounds|first %}
  13.                 {% set lastRound = data.rounds|last %}
  14.                 {% set fechaInicio = firstRound is defined ? firstRound.initial_date : '' %}
  15.                 {% set fechaFin = lastRound is defined ? lastRound.final_date : '' %}
  16.                 {{ fechaInicio }} - {{ fechaFin }}
  17.             </p>
  18.         </div>
  19.     </div>
  20. </div>