templates/Default/homepage/homepage_topdestinations.html.twig line 1

Open in your IDE?
  1. {%  if not (('homepage.topdestination.title' | trans) starts with '//') %}
  2.     <section class="homepage topdestinations">
  3.         <div class="container">
  4.             <h1>{{ 'homepage.topdestination.title' | trans }}</h1>
  5.             <div class="highlight">
  6.                 {% set i = 5 %}
  7.                 <div class="item-{{ i }}">
  8.                     <a href="{{ topdestinations[i].url }}">
  9.                         {% set path = 'bundles/static/uploads/homepage/topdestinations/' ~ app.request.locale | lower | replace({'_':'-'}) ~ '/' ~ ('homepage.topdestination.'~i~'.img.src')|trans %}
  10.                         <img alt="{{('homepage.topdestination.'~i~'.img.alt')|trans}}" src="{{asset(path)}}" width="474" height="320">
  11.                         <div class="title">
  12.                             {{('homepage.topdestination.'~i~'.title')|trans}}
  13.                             {% if topdestinations[i].price %}- {{ topdestinations[i].price }}€{% endif %}
  14.                         </div>
  15.                     </a>
  16.                 </div>
  17.             </div>
  18.             <ul>
  19.                 {% for i in 1..4 %}
  20.                     <li class="item-{{ i }}">
  21.                         <a href="{{ topdestinations[i].url }}">
  22.                             {% set path = 'bundles/static/uploads/homepage/topdestinations/' ~ app.request.locale | lower | replace({'_':'-'}) ~ '/' ~ ('homepage.topdestination.'~i~'.img.src')|trans %}
  23.                             <img alt="{{('homepage.topdestination.'~i~'.img.alt')|trans}}" src="{{asset(path)}}" width="231" height="154">
  24.                             <div class="title">
  25.                                 {{('homepage.topdestination.'~i~'.title')|trans}}
  26.                                 {% if topdestinations[i].price %}- {{ topdestinations[i].price }}€{% endif %}
  27.                             </div>
  28.                         </a>
  29.                     </li>
  30.                 {% endfor %}
  31.             </ul>
  32.         </div>
  33.     </section>
  34. {% endif %}