templates/frontend/MatchPlay/bracket-mobile/bracket-content-mobile.html.twig line 1

Open in your IDE?
  1. <div class="rounds">
  2.     <a href="{{ path('frontend_match_play_bracket', {'idc': competicion.id }) }}" class="float">
  3.         <svg viewBox="0 0 76 76" xmlns="http://www.w3.org/2000/svg" xml:space="preserve" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;transform: rotate(180deg);">
  4.             <path fill="currentColor" d="M52.25 60.167v-3.546l-10.773.113.17-12.105 10.575.023.028-3.485H38V48.3l-7.214-.023-.12-20.456L38 27.659v7.174h14.25v-3.232l-10.369-.019-.181-12.16 10.577-.134-.027-3.455H38v7.258l-12.667-.032v11.774h-7.916v6.334h7.916V52.97L38 53.071v7.096h14.25Z" style="fill-rule:nonzero"></path>
  5.             </svg>
  6.     </a>
  7.     <svg class="logo" xmlns="http://www.w3.org/2000/svg" width="180" height="180" viewBox="-9.51 -10.711 50 50" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;">
  8.         <path fill="currentColor" d="M33.177 28.214C11.93 17.02 0 28.642 0 28.642V2.055S3.527-3.748 16.44 4.15c11.306 6.917 16.616 4.145 16.616 4.145s.31 2.732-.856 6.804c-1.502 5.26.977 13.114.977 13.114z"></path>
  9.     </svg>
  10.     {% if configuracion.grupos == 0 %}
  11.         {% for round in data.rounds %}
  12.             {% set roundId = round.id %}
  13.             <div class="ronda round {% if round.order != currentRound %} hideRound{% endif %} {{ round.format == 'I' ? 'individual-round' : 'couple-round' }} round-section" data-round="{{ roundId }}" data-id="{{ roundId }}" data-orden="{{ round.order }}" >
  14.                 {% for match in round.matches %}
  15.                     <div class="encuentro pairing" data-id="{{ match.id }}">
  16.                         {% include 'frontend/MatchPlay/bracket-mobile/bracket-match-mobile.html.twig' %}
  17.                     </div>
  18.                 {% endfor %}
  19.             </div>
  20.         {% endfor %}
  21.     {% endif %}
  22. </div>