templates/Components/Form/destination.html.twig line 1

  1. <div class="booking-summary-v2">
  2.     <div class="col-md-4 col-sm-6 clear-padding">
  3.         {% if(destination.image is not empty) %}
  4.             <img src="{{ sonata_path(destination.image, 'big') }}">
  5.         {% endif %}
  6.     </div>
  7.     <div class="col-md-6 col-sm-6">
  8.         <h4>{{ destination.name }}</h4>
  9.         {{ destination.country }}
  10.         <p>
  11.             {{ destination.shortDescription | striptags | raw}}
  12.         </p>
  13.     </div>
  14.     <div class="clearfix visible-sm-block"></div>
  15.     <div class="col-md-2 text-center">
  16.         <a href="{{ path('form_select_destination', {'id': destination.id}) }}">Vybrat</a>
  17.     </div>
  18. </div>