{{#each data.items}}
  <a href="{{siteUrl}}" class="tui-card cux-hotel-card{{#if ../data.cardLayout}} {{../data.cardLayout}}{{/if}}">
    <div class="cux-hotel-image">
      {{#if newsLabel}}
        {{>news_label newsLabel=newsLabel type='newsPush'}}
      {{/if}}
      {{#if partnerLogoUrl}}
        <span class="partner-logo"><img class="lazyload" data-src="{{partnerLogoUrl}}" alt="Logo"></span>
      {{/if}}
      {{#if concept}}
        {{>concept_logo concept=concept.tag text=concept.name}}
      {{else if label}}
        {{>label_logo name=label.name}}
      {{/if}}
      <span class="cux-hotel-favorite" data-heart-id="{{pCode}}"></span>
      {{>image_responsive_card image-url=imageUrl alt-text=name}}
    </div>
    <div class="cux-hotel-info">
      <div class="info">
        <h3 class="lead-hotel">{{name}} <span class="rating">{{classificationText}}</span></h3>
        <p class="crumb">{{geoStructure.country.name}} &rsaquo; {{#and geoStructure.destination geoStructure.destination.name}}{{geoStructure.destination.name}} &rsaquo; {{/and}}{{geoStructure.resort.name}}</p>
        <p class="description">{{{usp}}}</p>
      </div>
      <ul class="facts">
        {{#each topFacts}}
          <li>
            <strong>{{header}}</strong> {{text}}
          </li>
        {{/each}}
      </ul>
      <div class="wrapup">
        {{#if customerRating.scoreText}}
          <div class="customer-rating">{{customerRating.name}} <strong>{{{customerRating.scoreText}}}</strong>
          </div>
        {{/if}}
        {{#and priceExample priceExample.currentPrice}}
          <p class="price-example">
            {{#if priceExample.additionalText}}
              <span class="show">{{priceExample.additionalText}}</span>
            {{/if}}
            {{#if priceExample.priceLabel}}
              {{priceExample.priceLabel}}
            {{else}}
              {{../data.translations.fromLabel}}
            {{/if}}
            <span class="price{{#if priceExample.hasDiscount}} color-tui-red{{/if}}">
              {{priceExample.currentPrice}}
            </span>
          </p>
        {{/and}}
      </div>
    </div>
  </a>
{{/each}}
