templates/Components/Destination/Detail/basic-info.html.twig line 1
<div class="row package-detail"><div class="container"><div class="product-brief-info"><div class="col-md-8 clear-padding">{% if(destination.gallery is not empty) %}<div id="slider" class="flexslider"><ul class="slides">{% for thumb in destination.gallery.galleryItems %}{% if(thumb.media is not empty and thumb.enabled) %}<li>{{ sonata_media(thumb.media, 'gallery') }}</li>{% endif %}{% endfor %}</ul></div><div id="carousel" class="flexslider"><ul class="slides">{% for thumb in destination.gallery.galleryItems %}{% if(thumb.media is not empty and thumb.enabled) %}<li>{{ sonata_media(thumb.media, 'small') }}</li>{% endif %}{% endfor %}</ul></div>{% endif %}</div><div class="col-md-4 detail clear-padding"><div class="review sidebar-item"><h4>{{ destination.name | raw }}</h4><div class="sidebar-item-body text-center"><div class="item-content" style="margin:0;padding:0;font-size: 0.8rem !important;">{{ destination.shortDescription | raw }}{% if(destination.links is not empty or destination.url is not empty or destination.transferInstruction is not empty or destination.faqs|length > 0) %}<strong style="font-size: 1rem">Odkazy</strong><br />{% set urlTitle = 'Odkaz na kemp' %}{% if(destination.id == 3 or destination.id==4) %}{% set urlTitle = 'Odkaz na hotel' %}{% endif %}<a href="{{ path('destination_detail',{'slug': destination.slug}) }}" class="btn btn-primary text-center" style="margin-bottom: 10px;width: 200px;">O destinaci</a>{% if(destination.transferInstruction is not empty) %}<a href="{{ path('destination_detail_instructions',{'slug': destination.slug}) }}" class="btn btn-primary text-center" style="margin-bottom: 10px;width: 200px;">Informativní pokyny</a>{% endif %}{% if(destination.url is not empty) %}<a href="{{ destination.url }}" target="_blank" class="btn btn-primary text-center" style="margin-bottom: 10px;width: 200px;">{{ urlTitle }}</a>{% endif %}{% if(destination.faqs|length > 0) %}<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>{% endif %}{% for link in destination.links %}<a href="{{ link.link }}" class="btn btn-primary text-center" style="margin-bottom: 10px;width: 200px;">{{ link.title }}</a>{% endfor %}{% endif %}</div></div></div></div></div></div></div>