templates/front/main/zones/itemZone1.html.twig line 1

Open in your IDE?
  1. <div class="theme_two_box_img">
  2.     <a href="{{ item.link }}"><img src="{{ item.image }}" alt="{{ item.title }}"></a>
  3. </div>
  4. <div class="theme_two_box_content">
  5.     <h4><a href="{{ item.link }}">{{ item.title }}</a></h4>
  6.     {% if item.stars != 0 %}
  7.         <span class="review_star">
  8.                 <span class="form-check-label">
  9.                     {% for j in 1 .. item.stars %} <i class="fas fa-star color_theme"></i> {% endfor %}
  10.                 </span>
  11.             </span>
  12.     {% endif %}
  13.     <p><i class="fas fa-map-marker-alt"></i> {{ item.city }}</p>
  14.     <h3><span>Price starts from</span> {% if item.price is defined and item.currency is defined %}
  15.             {{ item.price }}<sup>{{ item.currency }} </sup>
  16.         {% endif %} </h3>
  17. </div>