templates/Components/Destination/Detail/basic-info.html.twig line 1

  1. <div class="row package-detail">
  2.     <div class="container">
  3.         <div class="product-brief-info">
  4.             <div class="col-md-8 clear-padding">
  5.                 {% if(destination.gallery is not empty) %}
  6.                     <div id="slider" class="flexslider">
  7.                     <ul class="slides">
  8.                         {% for thumb in destination.gallery.galleryItems %}
  9.                             {% if(thumb.media is not empty and thumb.enabled) %}
  10.                                 <li>
  11.                                     {{ sonata_media(thumb.media, 'gallery') }}
  12.                                 </li>
  13.                             {% endif %}
  14.                         {% endfor %}
  15.                     </ul>
  16.                 </div>
  17.                     <div id="carousel" class="flexslider">
  18.                         <ul class="slides">
  19.                             {% for thumb in destination.gallery.galleryItems %}
  20.                                 {% if(thumb.media is not empty and thumb.enabled) %}
  21.                                     <li>
  22.                                         {{ sonata_media(thumb.media, 'small') }}
  23.                                     </li>
  24.                                 {% endif %}
  25.                             {% endfor %}
  26.                         </ul>
  27.                 </div>
  28.                 {% endif %}
  29.             </div>
  30.             <div class="col-md-4 detail clear-padding">
  31.                 <div class="review sidebar-item">
  32.                     <h4>{{ destination.name | raw }}</h4>
  33.                     <div class="sidebar-item-body text-center">
  34.                         <div class="item-content" style="margin:0;padding:0;font-size: 0.8rem !important;">
  35.                             {{ destination.shortDescription | raw }}
  36.                             {% if(destination.links is not empty or destination.url is not empty or destination.transferInstruction is not empty or destination.faqs|length > 0) %}
  37.                                 <strong style="font-size: 1rem">Odkazy</strong><br />
  38.                                 {% set urlTitle = 'Odkaz na kemp' %}
  39.                                 {% if(destination.id == 3 or destination.id==4) %}
  40.                                     {% set urlTitle = 'Odkaz na hotel' %}
  41.                                 {% endif %}
  42.                                 <a href="{{ path('destination_detail',{'slug': destination.slug}) }}" class="btn btn-primary text-center" style="margin-bottom: 10px;width: 200px;">O destinaci</a>
  43.                                 {% if(destination.transferInstruction is not empty) %}
  44.                                     <a href="{{ path('destination_detail_instructions',{'slug': destination.slug}) }}" class="btn btn-primary text-center" style="margin-bottom: 10px;width: 200px;">Informativní pokyny</a>
  45.                                 {% endif %}
  46.                                 {% if(destination.url is not empty) %}
  47.                                     <a href="{{ destination.url }}" target="_blank" class="btn btn-primary text-center" style="margin-bottom: 10px;width: 200px;">{{ urlTitle }}</a>
  48.                                 {% endif %}
  49.                                 {% if(destination.faqs|length > 0) %}
  50.                                     <a href="{{ path('destination_detail_faq',{'slug': destination.slug}) }}" class="btn btn-primary text-center" style="margin-bottom: 10px;width: 200px;">Často kladené otázky</a>
  51.                                 {% endif %}
  52.                                 {% for link in destination.links %}
  53.                                     <a href="{{ link.link }}" class="btn btn-primary text-center" style="margin-bottom: 10px;width: 200px;">{{ link.title }}</a>
  54.                                 {% endfor %}
  55.                             {% endif %}
  56.                         </div>
  57.                     </div>
  58.                 </div>
  59.             </div>
  60.         </div>
  61.     </div>
  62. </div>