You should never hardcode your URLs in drupal. They might change. Use the following generic method instead.
<a href="{{ path('contest.jury') }}" class="card-link stretched-link">{{ 'Meet the jury'|t }}</a>
You should never hardcode your URLs in drupal. They might change. Use the following generic method instead.
<a href="{{ path('contest.jury') }}" class="card-link stretched-link">{{ 'Meet the jury'|t }}</a>