<!-- ASIDE NEXT MATCH -->
<aside id="nextmatch">
{% if nextMatch | default %}
<div role="heading">{% trans %}Próximo Partido{% endtrans %}</div>
<ul id="match" class="grid-x grid-padding-x small-up-3 medium-up-3 large-up-3" role="figure">
<li class="cell" role="img">
<img alt="{{ nextMatch.t1_name }}" src="{{ nextMatch.t1_shield }}" title="{{ nextMatch.t1_name }} ">
</li>
<li class="cell">
<span class="">vs</span>
</li>
<li class="cell" role="img">
<img alt="{{ nextMatch.t2_name }}" src="{{ nextMatch.t2_shield }}" title="{{ nextMatch.t2_name }}">
</li>
</ul>
<div>
<div role="region">{{ nextMatch.t1_name }} - {{ nextMatch.t2_name }}</div>
<ul class="grid-x grid-padding-x small-up-1 medium-up-3 large-up-3" role="complementary">
<li class="cell"><strong>{{ nextMatch.competition_name }}</strong> ·</li>
{% if nextMatch.round | default %}
<li class="cell">{% trans %}Jornada{% endtrans %} {{ nextMatch.round }} ·</li>
{% endif %}
<li class="cell" data-date="{{ nextMatch.shedule }}">{{ nextMatch.shedule }}</li>
</ul>
</div>
{% endif %}
</aside>