{% if not (('homepage.topdestination.title' | trans) starts with '//') %}
<section class="homepage topdestinations">
<div class="container">
<h1>{{ 'homepage.topdestination.title' | trans }}</h1>
<div class="highlight">
{% set i = 5 %}
<div class="item-{{ i }}">
<a href="{{ topdestinations[i].url }}">
{% set path = 'bundles/static/uploads/homepage/topdestinations/' ~ app.request.locale | lower | replace({'_':'-'}) ~ '/' ~ ('homepage.topdestination.'~i~'.img.src')|trans %}
<img alt="{{('homepage.topdestination.'~i~'.img.alt')|trans}}" src="{{asset(path)}}" width="474" height="320">
<div class="title">
{{('homepage.topdestination.'~i~'.title')|trans}}
{% if topdestinations[i].price %}- {{ topdestinations[i].price }}€{% endif %}
</div>
</a>
</div>
</div>
<ul>
{% for i in 1..4 %}
<li class="item-{{ i }}">
<a href="{{ topdestinations[i].url }}">
{% set path = 'bundles/static/uploads/homepage/topdestinations/' ~ app.request.locale | lower | replace({'_':'-'}) ~ '/' ~ ('homepage.topdestination.'~i~'.img.src')|trans %}
<img alt="{{('homepage.topdestination.'~i~'.img.alt')|trans}}" src="{{asset(path)}}" width="231" height="154">
<div class="title">
{{('homepage.topdestination.'~i~'.title')|trans}}
{% if topdestinations[i].price %}- {{ topdestinations[i].price }}€{% endif %}
</div>
</a>
</li>
{% endfor %}
</ul>
</div>
</section>
{% endif %}