templates/Frontend/common/nextmatch.html.twig line 1

Open in your IDE?
  1. <!-- ASIDE NEXT MATCH -->
  2. <aside id="nextmatch">
  3.     {% if nextMatch | default %}
  4.         <div role="heading">{% trans %}Próximo Partido{% endtrans %}</div>
  5.         <ul id="match" class="grid-x grid-padding-x small-up-3 medium-up-3 large-up-3" role="figure">
  6.             <li class="cell" role="img">
  7.                 <img alt="{{ nextMatch.t1_name }}" src="{{ nextMatch.t1_shield }}" title="{{ nextMatch.t1_name }} ">
  8.             </li>
  9.             <li class="cell">
  10.               <span class="">vs</span>
  11.             </li>
  12.             <li class="cell" role="img">
  13.                 <img alt="{{ nextMatch.t2_name }}" src="{{ nextMatch.t2_shield }}" title="{{ nextMatch.t2_name }}">
  14.             </li>
  15.         </ul>
  16.         <div>
  17.             <div role="region">{{ nextMatch.t1_name }} - {{ nextMatch.t2_name }}</div>
  18.             <ul class="grid-x grid-padding-x small-up-1 medium-up-3 large-up-3" role="complementary">
  19.                 <li class="cell"><strong>{{ nextMatch.competition_name }}</strong> ·</li>
  20.                 {% if nextMatch.round | default %}
  21.                     <li class="cell">{% trans %}Jornada{% endtrans %} {{ nextMatch.round }} ·</li>
  22.                 {% endif %}
  23.                 <li class="cell" data-date="{{ nextMatch.shedule }}">{{ nextMatch.shedule }}</li>
  24.             </ul>
  25.         </div>
  26.     {% endif %}
  27. </aside>