<div class="theme_common_box_two img_hover">
<div class="theme_two_box_img">
<a href="{{ item.link }}">
<img src="{{ item.image }}" data-src="{{ item.image }}" alt="{{ item.title }}"/>
</a>
<p> <i class="fas fa-map-marker-alt"></i> {{ item.city }}</p>
</div>
<div class="theme_two_box_content">
<h4>
<a href="{{ item.link }}">{{ item.title }}</a>
</h4>
{% if item.type == "hotel" and item.stars != 0 %}
<span class="review_star">
<span class="form-check-label">
{% for j in 1 .. item.stars %} <i class="fas fa-star color_theme"></i> {% endfor %}
</span>
</span>
{% endif %}
<h3>
{% if item.price is defined and item.currency is defined %}
{{ item.price }}<sup>{{ item.currency }} </sup>
{% endif %}
{% if item.type == "hotel" %}
<span>
{% if item.board is defined %}
{{ item.board }}
{% endif %}
</span>
{% endif %}
</h3>
</div>
</div>